首页 > 其他 > 详细

:after和:before的作用及使用方法

时间:2020-08-05 22:15:18      阅读:100      评论:0      收藏:0      [点我收藏+]

1.  :before 和 :after 的主要作用是在元素内容前后加上指定内容

<p>你好</p>
p:before{
   content: Hello;
   color: red;
}
p:after{
    content: Tom;
    color: red;
}

2. :before和:after 用来写小三角形

<div class="demo">这是一个测试</div>
.demo:after{
    content: ‘‘;
    display: inline-block;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left: 8px solid #AFABAB;
    position: relative;
    top: 2px;
    left: 10px;
}

 

:after和:before的作用及使用方法

原文:https://www.cnblogs.com/life-fxl/p/13442860.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!