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; }
原文:https://www.cnblogs.com/life-fxl/p/13442860.html