gpt4 book ai didi

html - 被嵌套列表移动

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

我有一个运行良好的 ul,但是当我在上面的 li 添加一个嵌套的 ul 时,移动。有谁知道为什么?如何解决?

我这里有例子:http://jsfiddle.net/y5DtE/

HTML:

<ul>
<li> first
<ul>
<li> 1.2 </li>
</ul>
</li>
<li> second </li>
<li> third eally, really long </li>
</ul>​

CSS:

body {
margin:0px;
}

ul {
margin:40px auto;
list-style-type:none;
padding:0;
text-align: center;
}

ul li {
padding: 0 15px;
margin-right: 5px;
background-color: #f2f2f2;
display: inline-block;
height: 30px;
line-height: 30px;
font-family: verdana;
font-size:10px;
color: #666
}

ul li:last-child { margin-right: 0px; }

ul li ul {
margin:5px 0;
}​

最佳答案

li {
position: relative;
}

ul ul {
position: absolute;
left: 0;
}

关于html - 被嵌套列表移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13272357/

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