CSS :last-child 伪类
示例
为其父元素的最后一个子元素的 <p> 元素指定背景颜色。也为其父元素的最后一个子元素的 <li> 元素指定背景颜色。
p:last-child {
background-color: yellow;
}
li:last-child {
background-color: yellow;
}
亲自试一试 »
定义和用法
:last-child
伪类匹配任何作为其父元素的最后一个子元素的元素。
提示:p:last-child 等于 p:nth-last-child(1)。
版本 | CSS3 |
---|
浏览器支持
表中的数字指定了完全支持此伪类的第一个浏览器版本。
伪类 | |||||
---|---|---|---|---|---|
:last-child | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
CSS 语法
相关页面
CSS 参考::last-of-type