css

1.CSS3繪製不規則圖形
https://blog.csdn.net/suwyer/article/details/81045284

2.css切角效果,折角效果
https://www.cnblogs.com/yhhBKY/p/10642696.html

.one{
&:before {
content: "";
position: absolute;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
background: green;
background: linear-gradient(135deg,transparent 15px, green 0)top left;
background-size: 100% 100%;
background-repeat: no-repeat;
}
&:after{
content: "";
position: absolute;
top: 2px;
left: 2px;
right: 2px;
bottom: 2px;
background: linear-gradient(0deg,#003a00 0%, green 100%);
background: linear-gradient(135deg,transparent 15px,#003a00 5%, green 100%)top left;
background-size: 100% 100%;
background-repeat: no-repeat;
}
position: relative;
height: 200px;
width: 200px;
margin: 10px auto;
line-height: 200px;
background: #000;
background: linear-gradient(135deg,transparent 15px, #000 0)top left;
background-size: 100% 100%;
background-repeat: no-repeat;
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章