css3如何实现这样的图形

图片描述

需求是这样的:宽度不定
该如何实现呢

阅读 2.8k
3 个回答
<div id='chevron'></div>
#chevron {
  position: relative;
  text-align: center;

  margin-bottom: 6px;
  height: 34px;
  width: 200px;
  background:red;
}
#chevron:before {
  width: 0px; 
   height: 0px; 
   border-top: 12px solid red; 
   border-right: 100px solid transparent; 
  position:absolute;
  left:0;
  top:100%;
  content:'';
}
#chevron:after{
  width: 0px; 
      height: 0px; 
      border-top: 12px solid red; 
      border-left: 100px solid transparent;
  position:absolute;
  right:0;
  top:100%;
  content:'';
}

clipboard.png

 .border{
            width: 0;
            height: 0;
            border-left: 50px solid red;
            border-right: 50px solid red;
            border-top: 50px solid red;
            border-bottom: 50px solid transparent; 
        }
    

把宽度设置成你想要的就可以了,不定的话可以使用CSS 的var来定义,或者用less或sass这种

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题