我知道您可以选择最后一个孩子:last-child
或某个孩子:nth-child
(如果您知道他们的位置/编号)。
我需要的是在不知道可能有多少子元素的情况下选择最后 3 个子元素。
我知道有一些东西叫做:nth-last-child
,但我真的不明白它是如何工作的。
为了这:
<div id="something">
<a href="images/x.jpg" ><a/>
<a href="images/x.jpg" ><a/>
<!-- More elements here -->
<!-- ..... -->
<!-- I need to select these: -->
<a href="images/x.jpg" ><a/>
<a href="images/x.jpg" ><a/>
<a href="images/x.jpg" ><a/>
</div>
我需要这样的东西:
#something a:last-child{
/* only now it selects the last <a> and the 2 <a>'s that come before*/
}