使用first-child匹配所有p元素的首个元素css样式设定
实例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
p i:first-child{
color:blue;
}
</style>
</head>
<body>
<p>我是一个<i>强壮</i>的男人。我是一个<i>强壮</i>的男人</p>
<p>我是一个<i>强壮</i>的男人。我是一个<i>强壮</i>的男人</p>
</body>
</html>
运行效果:
评论