CSS3 :nth-last-of-type() 选择器

实例

二个 p p始计数:

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

:nth-last-of-type(n) 的第 N 计数。

n 公式。

提示:请参阅 :nth-last-child() N 始计数。

:nth-last-of-type() 了 IE8 本。

- 实例

实例 1

Odd 和 even 下标是 1)。

偶数 p :

p:nth-last-of-type(odd)
{
background:#ff0000;
}
p:nth-last-of-type(even)
{
background:#0000ff;
}

实例 2

使用公式 (an + b)度,n 从 0 开始),b

标是 3 有 p

p:nth-last-of-type(3n+0)
{
background:#ff0000;
}