CSS3 :nth-last-child() 选择器

实例

的每个 p :

p:nth-last-child(2)
{
background:#ff0000;
}

:nth-last-child(n) 的第 N 。

n 公式。

提示:请参阅 :nth-last-of-type() N 计数。

: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;
}