主页
CSS
CSS 伪类
Tryit: 样式化 p 元素中的第一个 i 元素
运行 ❯
建立您
自己的
网站
×
改变方向
保存代码
改变主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p i:first-child { color: blue; } </style> </head> <body> <p>I am a <i>strong</i> person. I am a <i>strong</i> person.</p> <p>I am a <i>strong</i> person. I am a <i>strong</i> person.</p> </body> </html>