如何使用CSS3选择器选择除最后一个子项之外的所有子项?
例如,只得到最后一个孩子第N个子项(1) 是的。div:nth-last-child(1)。
div:nth-last-child(1)
您可以使用否定伪类:not()对:last-child伪类。正在被引入CSS选择器3级,它不适用于IE8或更低版本:
:not(:last-child) { /* styles */ }