gpt4 book ai didi

html - CSS 下方带有一行的自定义选项卡

转载 作者:太空宇宙 更新时间:2023-11-04 06:09:23 25 4
gpt4 key购买 nike

我正在设计一个应用程序,其中我希望有如下所示的选项卡

enter image description here

但目前我看到类似下面的内容(被框覆盖)

enter image description here

我在网上搜索了类似的设计,但没有找到任何东西。你能帮助实现同样的目标吗?

更新

with border-bottom: 2px solid blue; 我可以得到下面的蓝线,但是突出显示的框仍然出现,如下所示。我也想避免这种情况。

enter image description here

最佳答案

.tabs {
position: relative;
min-height: 200px; /* This part sucks */
clear: both;
margin: 45px 0 25px;
background: white;
color: #41C0ED;
font-weight:bold;
padding: 5px;
}
.tab {
float: left;

}
.tab label {
background: #fff;
padding: 10px;
border-bottom: 1px solid #ccc;
margin-left: -1px;
position: relative;
left: 1px;
top: -29px;

}
.tab [type=radio] {
display: none;
}
.content {
position: absolute;
top: -1px;
left: 0;
background: white;
right: 0;
bottom: 0;
padding: 20px;
border-top: 1px solid #ccc;
-webkit-transition: opacity .6s linear;
opacity: 0;
}
[type=radio]:checked ~ label {
border-bottom: 2px solid #308AC2;
z-index: 2;
padding-bottom: 4px;
}
[type=radio]:checked ~ label ~ .content {
z-index: 1;
opacity: 1;
}
<div class="tabs">

<div class="tab">
<input type="radio" id="tab-1" name="tab-group-1" checked>
<label for="tab-1">Tab One</label>

<div class="content">

</div>
</div>

<div class="tab">
<input type="radio" id="tab-2" name="tab-group-1">
<label for="tab-2">Tab Two</label>

<div class="content">

</div>
</div>

<div class="tab">
<input type="radio" id="tab-3" name="tab-group-1">
<label for="tab-3">Tab Three</label>

<div class="content">

</div>
</div>

</div>

关于html - CSS 下方带有一行的自定义选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56556233/

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