兼容IE的圆角效果

  IE9以下的版本是不支持css3的,那如果想让IE6、IE7、IE8有圆角效果,怎么办呢??
下载这个 http://www.iefans.net/wp-content/uploads/2010/12/iecss3.rar附件,上面有个案例。
<style type="text/css">
.test {
width:560px;
height:400px;
background-color: blue;
padding:10px 8px 6px; 
border: 2px solid #C0C0C0; 
margin-bottom:10px;
border-radius: 10px;
-moz-border-radius: 5px;/*兼容火狐的*/
behavior: url(ie-css3.htc);
}
</style>

重要的是这段代码  behavior: url(ie-css3.htc); 
ie-css3.htc  这个文件一定要引用。
好了,咱们的兼容IE的圆角效果,OK了!

本文出自 “xp寞踪” 博客,谢绝转载!

你可能感兴趣的:(职场,效果,休闲,IE圆角)