1. css画园
代码:
.circle {
width: 100px;
height: 100px;
background: #C6E2FF;
border-radius: 50px;
}
效果:
2. css画三角
代码:
.triangle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid #C6E2FF;
}
效果:
版权声明:本文为Dg_Zing原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。