目前,我有一个HTML和CSS,结果在一个页面如下
然而,我想要的阴影以上的B & C标签,使它看起来像他们在后面。有人能hele实现这一点吗?
body {
background-color: rgb(245, 165, 61);
--border-rad: 5px;
}
.wrapper {
width: 80vh;
margin: 5%;
}
.tabs {
display: flex;
justify-content: space-around;
}
.tab {
width: 20%;
color: #000;
background-color: #fff;
margin: 2px 2px 0% 2px;
border-top-left-radius: var(--border-rad);
border-top-right-radius: var(--border-rad);
position: relative;
text-decoration: none;
text-align: center;
}
.tab:before,
.tab:after {
content: "";
position: absolute;
height: 10px;
width: 20px;
bottom: 0;
}
.tab:before {
left: -20px;
border-radius: 0 0 var(--border-rad) 0;
box-shadow: var(--border-rad) 0 0 0 #fff;
}
.tab:after {
right: -20px;
border-radius: 0 0 0 var(--border-rad);
box-shadow: calc(var(--border-rad) * -1) 0 0 0 #fff;
}
.content {
background-color: #fff;
height: 75vh;
box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3), 0 -3px 5px rgba(0, 0, 0, 0.3);
border-radius: 10px;
text-align: center;
}
<div class="wrapper">
<div class="tabs">
<span class="tab">A</span>
<span class="tab">B</span>
<span class="tab">C</span>
</div>
<div class="content">content</div>
</div>
3条答案
按热度按时间ztmd8pv51#
您需要调节不同元素的z轴。请记住,您只能在元素本身具有位置集时修改z轴(例如:相对)
下面是一个工作示例。请注意,我还向当前活动标签添加了一个"活动"类。
您需要创建JavaScript来使其具有完整的功能,但这只是起点。
祝你好运!
izj3ouym2#
只需将这些添加到
content
和tab
css类中即可:编辑:您需要
relative
定位才能使z-index
工作。vbkedwbf3#
你可以尝试下面的css巫婆将给予框的黑色阴影和边界底部你想要的。