gpt4 book ai didi

css - 选择最后一个 child ,除非它也是第一个 child

转载 作者:行者123 更新时间:2023-12-05 01:32:13 26 4
gpt4 key购买 nike

我已经为我的 UL 的最后一个 LI 标签设置了一个规则:

.className li:last-child {
stuff: here;
}

我是否能够在 CSS 中设置一条规则,表示“如果 last-child 也是 first-child,则将此样式应用于最后一个 LI 标记”,即 OL 中只有一个 LI 标记。

最佳答案

您可以与:not()一起使用选择器。

CSS pseudo-class :not(X) is a functional notation taking a simple selector X as an argument. It matches an element that is not represented by the argument.



li:last-child:not(:first-child) {
color: red;
}
<ul>
<li>item a</li>
<li>item b</li>
<li>item c</li>
</ul>

<ul>
<li>only item</li>
</ul>

关于css - 选择最后一个 child ,除非它也是第一个 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38256869/

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