请帮我在这个 jsfiddle 上选择 .url 类的最后三个元素?
<a href="http://jsfiddle.net/eW6S5/135/">CSS</a>
请帮我在这个 jsfiddle 上选择 .url 类的最后三个元素?
<a href="http://jsfiddle.net/eW6S5/135/">CSS</a>
你可以做:
.projects:nth-last-of-type(1) .url , .projects:nth-last-of-type(2) .url , .projects:nth-last-of-type(3) .url{
background:blue;
}
示例:http: //jsfiddle.net/cherniv/eW6S5/136/
或者更有效和优雅(通过强大的Itay):
.projects:nth-last-of-type(-n+3) .url