代码示例:(标识:eg_css_sel_first-of-type)
<!DOCTYPE html>
<html>
<head>
<style> 
p:first-of-type
{
background:#ff0000;
}
</style>
</head>

<body>

<h1>这是标题</h1>

<p>这是第一个段落。</p>
<p>这是第二个段落。</p>
<p>这是第三个段落。</p>
<p>这是第四个段落。</p>

</body>
</html>
运行结果: