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;
 }

 

相关文章:

  • 2021-05-17
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-10
  • 2021-10-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-06
  • 2021-12-16
  • 2022-12-23
  • 2021-12-25
  • 2022-12-23
相关资源
相似解决方案