CSS3 :nth-last-child() 选择器
:nth-last-child() 了 IE8 本。
- 实例
实例 1
Odd 和 even 下标是 1)。
偶数 p :
p:nth-last-child(odd)
{ background:#ff0000; }p:nth-last-child(even)
{ background:#0000ff; }
实例 2
使用公式 (an + b)度,n 从 0 开始),b
标是 3 有 p
p:nth-last-child(3n+0)
{
background:#ff0000;
}