css – 如何用带边框的透明背景绘制三角形?

前端之家收集整理的这篇文章主要介绍了css – 如何用带边框的透明背景绘制三角形?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想知道如何绘制带边框的透明背景的三角形?我发现的例子没有提供边界.有没有办法实现这个目标?

解决方法

Demo
.triangle {
     width: 0;
     height: 0;
     border-left: 50px solid transparent;
     border-right: 50px solid transparent;
     border-bottom: 100px solid red;
     position:relative;
 }
 .triangle:after{
     content:'';
     position:absolute;
     top:5px;
     left:-45px;
     width: 0;
     height: 0;
     border-left: 45px solid transparent;
     border-right: 45px solid transparent;
     border-bottom: 92px solid white;
}
原文链接:https://www.f2er.com/css/214653.html

猜你在找的CSS相关文章