<!DOCTYPE html>
<html>
<head>
<style>
i:first-child {
background: yellow;
}
</style>
</head>
<body>
<h1>:first-child 实例</h1>
<p>我是一个<i>强壮</i>的男人。我是一个<i>强壮</i>的男人。</p>
</body>
</html>