gpt4 book ai didi

css - 嵌套列表的边框样式

转载 作者:行者123 更新时间:2023-11-28 18:39:02 25 4
gpt4 key购买 nike

在我的 HTML 文档中,我有一个带有样式的嵌套列表:

li {
list-style-type:none;
border:1px solid;
margin:3px;
}

li li {
list-style:none;

}


<ul>
<li>something
<ul>
<li>hello</li>
<li>there</li>
</ul>
</li>
</ul>

我当前的 CSS 规则边框看起来像这样:

enter image description here

我希望它们看起来像这样,但不插入 <span>标签:

enter image description here

有什么想法吗?

最佳答案

也许是这样的:

li {
clear: both;
width: 200px;
list-style-type:none;
border:1px solid;
margin:3px;
}
li ul{
float: left;
}


<ul>
<li>something
<ul>
<li>hello</li>
<li>there</li>
</ul>
</li>
<li>something
<ul>
<li>hello</li>
<li>there</li>
</ul>
</li>
</ul>

结果:

enter image description here

关于css - 嵌套列表的边框样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11992029/

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