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

实例

二个 p p:

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

:nth-of-type(n) 的第 N 每个元素.

n 公式。

提示:请参阅 :nth-child() N

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

- 实例

实例 1

Odd 和 even 下标是 1)。

偶数 p 景色:

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

实例 2

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

标是 3 有 p 色:

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