运行 ❯
获取您
自身
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p:first-child { background-color: yellow; } </style> </head> <body> <h1>Demo of :firstchild</h1> <p>This paragraph is not the first child of its parent (body).</p> <p>This paragraph is not the first child of its parent (body).</p> <div> <p>This paragraph is the first child of its parent (div).</p> <p>This paragraph is not the first child of its parent (div).</p> </div> </body> </html>