样式化作为其父元素的最后一个子元素的每个
元素
要样式化作为其父元素的最后一个子元素的每个 <p> 元素,请使用 CSS :last-child 选择器。你可以尝试运行以下代码以实现 :last-child 选择器
示例
<!DOCTYPE html>
<html>
<head>
<style>
p:last-child {
background: orange;
}
</style>
</head>
<body>
<p>This is demo text1.</p>
<p>This is demo text2.</p>
<p>This is demo text3.</p>
</body>
</html>输出

广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP