CSS实现光滑圆角效果

  这个效果非常独特,以前我所见过的这种特效实现过程非常复杂,但这里的源代码却非常简单,推荐收藏。

  <html xmlns:v>

  <head>

  <style>

  v\:*{behavior: url(#default#VML);}

  </style>

  </head>

  <body>

  <v:roundRect style="position:absolute;left:20px;top:50px;width:200px;height:140px;" FillColor="#e8e8e8" Filled="T" />

  刷新本页才能看到效果

  </body>

  </html>