使用标准列表,我正在尝试选择最后2个列表项。我有各种各样的排列An B,但似乎没有选择最后2:
li:nth-child(n+2) {} /* selects from the second onwards */ li:nth-child(n-2) {} /* selects everything */ li:nth-child(-n+2) {} /* selects first two only */ li:nth-child(-n-2) {} /* selects nothing */
我知道一个新的CSS3选择器像:nth-last-child()但我更喜欢的东西,在几个更多的浏览器,如果可能的(不关心IE特别是)。