CSS3 :last-of-type 选择器

实例

p 色:

p:last-of-type
{
background:#ff0000;
}

:last-of-type 了 IE8 本。

:last-of-type

提示:等同于 :nth-last-of-type(1)。