折角效果
45 度折角
先用一个渐变画出三角型折角,再用第二个渐变填充余下的背景。
div {
width: 200px;
height: 200px;
background: linear-gradient(to left bottom, transparent 50%, burlywood 0) no-repeat
100% 0/ 20px 20px, linear-gradient(-135deg, transparent 5%, darkorange 0);
}