> CSS在线开发手册 > :last-of-type

实例

指定其父级的最后一个p元素的背景色:

p:last-of-type
{
background:#ff0000;
}
运行一下 »

定义和用法

:last-of-type选择器匹配元素其父级是特定类型的最后一个子元素。

提示: 和:nth-last-of-type(1)是一个意思。

浏览器支持

:last-of-type:last-of-type:last-of-type:last-of-type:last-of-type

所有主流浏览器都支持:last-of-type选择器。除了IE8和更早版本。

上一篇:
下一篇: