gpt4 book ai didi

css - 仅使用 css 的表格导航

转载 作者:行者123 更新时间:2023-11-28 12:47:00 25 4
gpt4 key购买 nike

我在包含以下代码的外部文件中有一个表格导航列表(带有我选择的样式):

.tabs
{
position:relative;
text-align:left; /* This is only if you want the tab items at the center */
width: 90%;
padding: 0;
margin: 0;
/*border: 1px solid green;*/

}
.tabs ul.menu
{
list-style-type:none;
display:block; /* Change this to block or inline for non-center alignment */
width:570px;
/* min-width:570px;
max-width:800px;
vertical-align: bottom;
/*border: 1px solid red;*/
}
.tabs ul.menu > li
{
display:inline;
float:center;
vertical-align: bottom;
/** border: 1px solid yellow;*/
cursor:hand;

}
.tabs ul.menu li > a
{
color:#7a7883;
text-decoration:none;
display:inline-block;
text-align:center;
border:1px solid #f1f3f4;
padding:5px 10px 5px 10px;
width: 25%;

font-size:15px;
font-family:"Times New Roman", Times, serif;

border-top-left-radius:5px; -moz-border-radius-topleft:4px; -webkit-border-top-left-radius:5px;
border-top-right-radius:5px; -moz-border-radius-topright:4px; -webkit-border-top-right-radius:5px;
-moz-user-select:none;
cursor:hand;

/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#aeb8c0));

/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #aeb8c0, #fff);

/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #aeb8c0, #fff);

/* IE 10 */
background: -ms-linear-gradient(top, #aeb8c0, #fff);

/* Opera 11.10+ */
background: -o-linear-gradient(top, #aeb8c0, #fff);
}
.tabs ul.menu li > a:hover
{

color: #fff;
cursor:hand;

}
.tabs ul.menu li > div
{
display:none;
position:absolute;
width:98%;
/* max-width:700px;*/
min-height:230px;
left:0;
margin: 0 15px 0 15px;
z-index:-1;
text-align:left;
padding:0;
}
.tabs ul.menu li > div > p
{
border:1px solid #f1f3f4;
background-color: #f5f9fc;
width: 99%;
padding:10px;
margin:0;
color: #65636e;
font-size:12px;
font-family:"Times New Roman", Times, serif;
text-decoration: none;
min-height:200px;

}
.tabs ul.menu li > a:focus
{
color: #f5f9fc;

}

.tabs ul.menu li:target > a
{
cursor:default;
/* Safari 4-5, Chrome 1-9 */
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f1f3f4), to(#fff));

/* Safari 5.1, Chrome 10+ */
background: -webkit-linear-gradient(top, #fff, #f1f3f4);

/* Firefox 3.6+ */
background: -moz-linear-gradient(top, #fff, #f1f3f4);

/* IE 10 */
background: -ms-linear-gradient(top, #fff, #f1f3f4);

/* Opera 11.10+ */
background: -o-linear-gradient(top, #fff, #f1f3f4);
cursor:hand;
}

.tabs ul.menu li:target > div
{
display:block;
}

在网页中我有这个:

<!-- Side NAVIGATION -->
<!-- Wrapper 2-Content -->
<div class="wrapper" style="min-height: 200px;"">
<!-- content -->
<div class="content">
<div class="tabs">
<ul class="menu">
<li id="item-1">
<a href="#item-1">Bla Bla 1</a>
<div><p>Tab Content 1</p></div>
</li>
<li id="item-2">
<a href="#item-2">Bla Bla 2</a>
<div><p>Tab Content 2</p></div>
</li>
<li id="item-3">
<a href="#item-3">Bla Bla 3</a>
<div><p>Tab Content 3</p></div>
</li>
</ul>

</div>
</div>
<!-- content -->
<!-- end of Side NAVIGATION -->

一切正常,除了它只显示选项卡而没有显示内容的框。我希望其中一个内容默认可见。我只是不知道如何在不使用 javaScript 的情况下激活它。

先谢谢你。

最佳答案

添加显示: block 作为您要默认显示的 div 的样式。例如,请参阅我为使 item1 在运行时可见而创建的 fiddle http://jsfiddle.net/X6Agf/

 <div style="display:block"><p>Tab Content 1</p></div>

关于css - 仅使用 css 的表格导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17282546/

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