要使用CSS为其父元素的第一个<p>元素的每个<p>元素设置样式,请使用:first-of-type选择器:
您可以尝试运行以下代码来实现: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>