美文网首页
伪类选择器 before after

伪类选择器 before after

作者: Simon_s | 来源:发表于2016-09-27 18:39 被阅读14次
<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>Title</title>
   <style>
   /*在元素内容前面插入些内容*/
       p:before{
           content: "$";
       }
   /*在元素内容后面插入些内容*/
       p:after{
           content: "版权所有,盗版必究";
       }
   </style>
</head>

<body>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
<p>电脑撒旦淡淡的南</p>
</body>
</html>

相关文章

网友评论

      本文标题:伪类选择器 before after

      本文链接:https://www.haomeiwen.com/subject/cgthyttx.html