gpt4 book ai didi

html - 列表项之间的间距

转载 作者:行者123 更新时间:2023-11-28 07:06:53 25 4
gpt4 key购买 nike

我对间距有疑问。

我的问题是在

#dropdown ul li + li:before {
content: " | ";
padding: 0 10px;
}

正在将那个(方法?)的内容添加到此下拉菜单中的每个列表项之前。

我需要它,它就在第一个 li 之间。我觉得有一种方法可以指定我只需要在第一个无序列表的 li 之间使用它。

<div class=”dropdown”>
<ul>
<li> Services /** I need it here somehow */
<ul>
<li>support center</li>
<li>contact us</li>
</ul>
</li>
<li> Products
<ul>
<li>Ball</li>
<li>Truck</li>
</ul>
</ul>
</div>

帮忙吗?

最佳答案

尝试这样的事情:

#dropdown ul li:before {
content: " | ";
padding: 0 10px;
}

#dropdown ul li:first-child:before {
content: "";
padding: 0 10px;
}

关于html - 列表项之间的间距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32897393/

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