我想要 jquery:last
选择器之类的东西,但在纯 css 中。
如果我不知道它在 DOM 结构中的索引,我怎么能只得到“z”段!. 或者如何获得'.area'类的最后一个孩子?我看到这个CSS3 得到最后一个元素,但在我的情况下它不起作用,因为我在父元素中有另一个子元素。
p.area:last-child
没用!
当我们知道 class 有多少元素时,我找到了一个解决方案.area
。
选择器看起来像这样:p.area ~ p.area ~ p.area
但是当我们不知道时......我想......只是为了好玩=)
<div>
<h1>This is a heading</h1>
<p class="">The first paragraph.</p>
<p class="area">The x paragraph.</p>
<p class="area">The y paragraph.</p>
<p class="area">The z paragraph.</p>
<p class="">The last paragraph.</p>
</div