如何使用CSS定位容器中的最后3个元素:nth-​​last-child(n)?

时间:2014-01-21 18:26:35

标签: css css3 css-selectors

仅使用CSS。你如何定位容器中的最后3个元素?我正在使用:nth-last-child(n),但是想知道是否有办法将其限制为仅定位到一组元素?

2 个答案:

答案 0 :(得分:4)

假设你的意思是最后三个孩子:

:nth-last-child(-n + 3) {
    color: coral;
}

http://jsfiddle.net/UHv8u/4/

答案 1 :(得分:0)

如果您想对其进行硬编码.. css

p:nth-last-child(1),p:nth-last-child(2),p:nth-last-child(3){ //assuming all are p tags
background:blue;
}