Apr
20
20
用css实现圆角效果
No Comments | 1,487 views经过最近一段时间的寻找和测试,我发现了用CSS实现圆角的三种方法:
第一种
CSS圆角效果,仅支持IE,不支持firefox
<style>
v\:*{behavior: url(#default#VML);}
</style>
<v:roundrect style="position: absolute; left: 20px; top: 50px; width: 200px; height: 140px" fillcolor="#e8e8e8" filled="T">
刷新本页才能看到效果</v:roundrect>
v\:*{behavior: url(#default#VML);}
</style>
<v:roundrect style="position: absolute; left: 20px; top: 50px; width: 200px; height: 140px" fillcolor="#e8e8e8" filled="T">
刷新本页才能看到效果</v:roundrect>




