选择器:last-of-type
收藏:0
阅读:45
CSS3 :last-of-type 选择器
实例
指定其父级的最后一个p元素的背景色:
p:last-of-type
{
background:#ff0000;
}
{
background:#ff0000;
}
定义和用法
:last-of-type选择器匹配元素其父级是特定类型的最后一个子元素。
提示: 和:nth-last-of-type(1)是一个意思。
浏览器支持
所有主流浏览器都支持:last-of-type选择器。除了IE8和更早版本。