如何指定:first-of-type整个文档?
我想样式化<p>HTML 的第一个样式,没有样式设置(我不想编写,section p:first-of-type因为它可能位于其他HTML文档的其他地方)。
p {
background:red;
}
p:first-of-type {
background:pink;
}
p:last-of-type {
background:yellow;
}
<body>
<section>
<p>111</p>
<p>222</p>
<p>333</p>
</section>
<p>444</p>
<p>555</p>
</body>