CSS3 :last-child 选择器
:last-child 选择器匹配属于其父元素的最后一个子元素的每个元素。
提示:p:last-child 等同于 p:nth-last-child(1)。
1. 范例
指定属于其父元素的最后一个子元素的 p 元素的背景色:
p:last-child { background:#ff0000; }
2. 浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
选择器 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
:last-child | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
:last-of-type 选择器匹配属于其父元素的特定类型的最后一个子元素的每个元素。提示:等同于 :nth-last-of-type(1)。 1. 范例指定父元素的最后一个 p 元 ...