CSS画出边框三角形

来源:互联网 发布:linux运维很忙吗 编辑:程序博客网 时间:2024/05/16 08:04
.tri-up{
width: 0;
height:0;
border-left:20px solid transparent;
border-right: 20px solid transparent;
border-bottom: 20px solid red;  }
.tri-left{
width: 0;
height:0;
border-top:20px solid transparent;
border-bottom: 20px solid transparent;
border-left: 20px solid red;}
.tri-right{
width: 0;
height:0;
border-top:20px solid transparent;
border-bottom: 20px solid transparent;
border-right: 20px solid red;}
.tri-down{
width: 0;
height:0;
border-left:20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid red; 
}

原创粉丝点击