需求
css 画一个三角形
搜 用 CSS 绘制最常见的 40 种形状和图形
https://www.webhek.com/post/40-css-shapes.html
https://segmentfault.com/a/1190000039200998
实现
代码都是复制过来的,糊上去就完事了
#triangle-left {
width: 0;
height: 0;
border-top: 50px solid transparent;
border-right: 100px solid red;
border-bottom: 50px solid transparent;
}