摘要:
用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 阅读全文