多个伪元素组合使用
实例代码:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
p::first-letter{
color:red;
font-size:xx-large;
}
p::first-line{
color:blue;
font-variant:small-caps;
}
</style>
</head>
<body>
<p>你可以结合::first-letter和::first-line 伪元素来为文本的首字母和首行添加特殊效果。</p>
</body>
</html>
运行效果:
评论