gpt4 book ai didi

html - 如何居中 CSS 标签

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

一直在使用 CSS 技巧中的一些 CSS 选项卡。它们工作得很好,唯一的问题是我需要选项卡本身位于页面的中央,连续三个,就像这个网站:

http://lewishowes.com/ (赞助商正下方的 3 个标签)

这是一个 jsfiddle:

http://jsfiddle.net/4zrsD/

代码如下:

CSS

.tabs {
position: relative;
min-height: 200px; /* This part sucks */
clear: both;
margin: 25px 0;
}
.tab {
float: left;
}
.tab label {
background: #eee;
padding: 10px;
border: 1px solid #ccc;
margin-left: -1px;
position: relative;
left: 1px;
}
.tab [type=radio] {
display: none;
}
.content {
position: absolute;
top: 28px;
left: 0;
background: white;
right: 0;
bottom: 0;
padding: 20px;
border: 1px solid #ccc;
}
[type=radio]:checked ~ label {
background: white;
border-bottom: 1px solid white;
z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
z-index: 1;
}

HTML

<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">
stuff
</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">
stuff
</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">
stuff
</div>
</div>

</div>

谢谢!

最佳答案

.tab:nth-child(1) { margin-left: 30%; }

http://jsfiddle.net/4zrsD/1/

这显然不会完美地居中,但您可以使用媒体查询使其更居中,具体取决于屏幕宽度。

关于html - 如何居中 CSS 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21769137/

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