我
实现一个三角形
难度:
三角形的实现原理是利用了元素边框连接处的等分原理。
css
.triangle {
width: 0;
height: 0;
border-width: 100px;
border-style: solid;
border-color: tomato transparent transparent transparent;
}