源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> <style> p i:first-child { color: blue; } </style> </head> <body> <p>我很 <i>强壮</i>. 我很 <i>强壮</i>.</p> <p>我很 <i>强壮</i>. 我很 <i>强壮</i>.</p> <p><b>注意:</b> 为了 让:first-child在IE8和更早的版本工作 , 必须声明 DOCTYPE.</p> </body> </html>
运行结果