CSS画图
本文最后更新于:2021年4月8日 下午
用CSS画出图形
矩形
1 |
|
三角形
等腰三角形
- 上三角
#triangle-up {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid teal;
}
1 |
|
- 下三角
#triangle-down {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 100px solid teal;
}
1 |
|
- 左三角
#triangle-left {
width: 0;
height: 0;
border-top: 50px solid transparent;
border-bottom: 50px solid transparent;
border-right: 100px solid teal;
}
1 |
|
- 右三角
#triangle-right {
width: 0;
height: 0;
border-top: 50px solid transparent;
border-bottom: 50px solid transparent;
border-left: 100px solid teal;
}
1 |
|
直角三角形
- 左上三角
#triangle-topleft {
width: 0;
height: 0;
border-top: 120px solid teal;
border-right: 100px solid transparent;
}
1 |
|
- 右上三角
#triangle-topright {
width: 0;
height: 0;
border-top: 120px solid teal;
border-left: 100px solid transparent;
}
1 |
|
- 左下三角
#triangle-bottomleft {
width: 0;
height: 0;
border-bottom: 120px solid teal;
border-right: 100px solid transparent;
}
1 |
|
- 右下三角
#triangle-bottomright {
width: 0;
height: 0;
border-bottom: 120px solid teal;
border-left: 100px solid transparent;
}
1 |
|