我有一些示例帖子标记:
<article class="post">
<p>Some text.</p>
<p>
<a href="#"><img src="#"></a>
<a href="#"><img src="#"></a>
<a href="#"><img src="#"></a> <!-- TARGET ME (LAST) -->
</p>
<p>Some text. Some more text <a href="#">with link</a></p>
<p>
<a href="#"><img src="#"></a> <!-- TARGET ME (LAST) -->
</p>
<p>Some text. Some more text <a href="#">with link</a></p>
</article>
上面的小提琴可以在这里看到:http: //jsfiddle.net/alecrust/4TCyM/
问题:如何在不更改此标记的情况下定位每组中的最后一个图像(显示为 HTML 注释)?
我认为 JavaScript 将是必需的,因为我想不出任何 CSS 解决方案。我不能使用img:last-child
,因为它针对上述标记中的每个图像。我不能使用a:last-child img
,因为这不会针对上述标记中的任何内容。