css 写 小三角伪类

<div class="z_r"></div>

CSS伪类

      左三角:没有左边框;同理右上下。。。

.z_r:before{
  content: '';
  position: absolute;
  top:0.9rem;
  left:-0.39rem;
  width:0;
  height:0;
  border-top:0.4rem solid transparent;
  border-bottom:0.4rem solid transparent;
  border-right:0.4rem solid #ececec;
 }
原文地址:https://www.cnblogs.com/wolflower/p/7016229.html