gpt4 book ai didi

html - ul在nav中的定位

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

我试图将未排序列表放在导航中,但我希望它位于标题框的中心。

<div class="header-box">        
<nav>
<ul>
</ul>
</nav>
</div>

http://jsfiddle.net/9zWm9/7/这是我在代码中使用的 fiddle 。

最佳答案

首先,清除 float 。编辑:我的一个 friend 对内部的 div 有真正的问题,所以让我们改变它。

<div class="header-box">
<nav>
<ul>
<li>AASD</li>
<li>AASD</li>
<li>AASD</li>
<li style="visibility:hidden;opacity:0;height:0;width:0;clear:both"></li>
</ul>
</nav>
</div>

和样式:

<style>


.header-box {
width: 400px;
height: 49px;
border: 1px solid green;
position: relative;
}
ul {
margin: 0 auto;
padding: 0;
text-align: center;
height: 100%;
margin: 13px auto;
}
nav li {
float: none;
list-style-type: none;
/* padding-left: 19px; */
/* margin-left: 20px; */
/* line-height: 50px; */
display: inline-block;
/* top: 0px; */
margin: 0 auto;
text-align: center;
}

</style>

关于html - ul在nav中的定位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22777712/

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