HTML:
<div class="arrow-right"></div>
CSS:
.arrow-right {
width: 0;
height: 0;
border-top: 60px solid transparent;
border-bottom: 60px solid transparent;
border-left: 60px solid green;
}
结果:
有什么办法可以在结果的两侧产生一个 1 像素的边框?(非 180 度的)?
谢谢