码迷,mamicode.com
首页 > Web开发 > 详细

css 边框添加三角形指向,简单粗暴,易学易懂

时间:2021-06-17 17:04:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:before   border   16px   height   spl   class   div   构建   定位   

构建一个 div , class 随便命名

 

css 部分

class 名字 {

position: relative; // 相对定位是重点

}

class名字:before,class名字:after{

position: absolute;
      content: " ";
      top: 10px;
      left: -16px;
      display: block;
      width: 0;
      height: 0;
      border: 8px solid rgba(255, 87, 51, 0.1);
      border-color: transparent rgba(255, 87, 51, 0.1) transparent transparent;
      z-index: 111;

}

class名字:after{
      left: -17px;
      border-color: transparent rgba(255, 87, 51, 0.1) transparent transparent;
      z-index: 11;
    }

 

css 边框添加三角形指向,简单粗暴,易学易懂

标签:before   border   16px   height   spl   class   div   构建   定位   

原文地址:https://www.cnblogs.com/majiayin/p/14892284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!