x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
p:first-child {
7
color: blue;
8
}
9
</style>
10
</head>
11
12
<body>
13
<p>This is some text.</p>
14
<p>This is some text.</p>
15
<p><b>注意:</b>对于 :first-child 工作于 IE8 以及更早版本的浏览器, !DOCTYPE 必须已经声明.</p>
16
</body>
17
</html>