gpt4 book ai didi

css - 如何为选定的选项卡提供矩形样式样式 css,如下面的屏幕截图所示?

转载 作者:行者123 更新时间:2023-11-28 06:59:35 24 4
gpt4 key购买 nike

enter image description here

我想像这样制作我的标签,但不知道如何做。

我也为样本形状尝试了下面的代码,但它没有出现。

#demo:before {
border-width: 10px;
border-top-color: #ccc;
border-left-width: 50px;
border-right-width: 0;
left: 0;
}

#demo:after {
border-width: 2px;
border-top-color: #777;
border-left-width: 50px;
border-right-width: 0;
left: 0;
}

最佳答案

你可以通过在 a 元素上添加一个 after 伪元素来做到这一点。

<ul>
<li><a class="active" href="#">Notifications</a></li>
<li><a href="#">Reports</a></li>
</ul>

ul {
padding: 0;
margin: 0;
box-sizing: border-box;
list-style-type: none;
background-color: blue;
float: left;
}

ul li {
float: left;
}

ul li + li {
border-left: 1px solid rgba(255, 255, 255, .5);
}

ul li a {
display: block;
color: #fff;
font-size: 14px;
text-decoration: none;
font-family: helvetica;
padding: 20px 16px;
position: relative;
}

ul li a.active:after {
content: "";
display: block;
background-color: #fff;
height: 10px;
position: absolute;
bottom: 0;
left: 16px;
right: 16px;
}

这是 fiddle :

https://jsfiddle.net/qnwe098m/7/

关于css - 如何为选定的选项卡提供矩形样式样式 css,如下面的屏幕截图所示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33316817/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com