x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
p:first-child i {
7
color: blue;
8
}
9
</style>
10
</head>
11
12
<body>
13
<p>I am a <i>strong</i> man. I am a <i>strong</i> man.</p>
14
<p>I am a <i>strong</i> man. I am a <i>strong</i> man.</p>
15
<p><b>注意:</b> 当:first-child 作用于 IE8 及更早版本的浏览器, DOCTYPE 必须已经定义.</p>
16
</body>
17
</html>