我想知道如何绘制带边框的透明背景的三角形?我发现的例子没有提供边界.有没有办法实现这个目标?
@H_502_3@解决方法
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; }