gpt4 book ai didi

jquery - 删除新行上的分隔符 (":before")

转载 作者:行者123 更新时间:2023-12-01 05:34:38 25 4
gpt4 key购买 nike

我使用此代码在菜单项之间添加分隔符。

li:before {
content: '\00B7';
float: left;
}

如果我转到新行,有什么方法可以删除分隔符吗?看图片(我想去掉“测试类别2”之前的点)

这就是我所拥有的:

enter image description here

这就是我想做的:

enter image description here

最佳答案

您可以组合 CSS 伪类,例如 :nth-child:last-child 来执行以下操作:

li:last-child:before {
content: '';
float: left;
}

或者如果是倒数第三个

li:nth-last-child(3):before {
content: '';
float: left;
}

然后,您可以将其与媒体查询结合起来。

关于jquery - 删除新行上的分隔符 (":before"),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34858049/

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