CSS :first-of-type 选择器的作用
使用 CSS :first-of-type 选择器为其父级的第一个 <p> 元素设定 CSS 样式。
示例
你可以尝试运行以下代码来实现 :first-of-type 选择器
<!DOCTYPE html>
<html>
<head>
<style>
p:first-of-type {
background: orange;
}
</style>
</head>
<body>
<p>This is demo text1.</p>
<p>This is demo text2.</p>
</body>
</html>
广告
数据结构
网络
关系数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 语言
C++
C#
MongoDB
MySQL
JavaScript
PHP