摘要: 用css实现的各种常见的形状效果,如下:#square { width: 100px; height: 100px; background: red; }#rectangle { width: 200px; height: 100px; background: red; }#circle { width: 100px; height: 100px; background: red; -moz-border-radius: 50px; -webkit-border-radius: 50px; border-radius: 50px; } /* Cleaner, but slightly less 阅读全文
posted @ 2013-01-13 11:23 lines 阅读(239) 评论(0) 推荐(0) 编辑