css3功能非常强大,之前需要图片完成的icon,现在我们只需要几段css代码就可以实现此功能。下面给大家分享纯css制作的圆,椭圆,三角形箭头图标,非常使用,需要的朋友参考下吧
圆:
CSS Code复制内容到剪贴板- .yuan{
- width:100px;
- height:100px;
- -moz-border-radius:50%;
- -webkit-border-radius:50%;
- border-radius:50%;
- background-color:red;
- }
- "yuan">
椭圆
CSS Code复制内容到剪贴板
- .oval {
- width: 200px;
- height: 100px;
- background-color: red;
- -moz-border-radius: 100px / 50px;
- -webkit-border-radius: 100px / 50px;
- border-radius: 100px / 50px;
- }
- "oval">