20
2012
05

css圆角和IE支持圆角的文件

下载地址:http://www.iefans.net/wp-content/uploads/2010/12/iecss3.rar

解压后,打开test.html,如果显示效果是圆角,则可以继续!

 

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
   <title></title>
   <style type="text/css">

       .test
       {
           width: 400px;
           height: 200px;
           background-color: blue;
           border: 1px solid blue;
           margin-bottom: 10px;
           border-radius: 5px 10px 15px 20px;


           -moz-border-radius: 5px 10px 15px 20px;
           behavior: url(Styles/ie-css3.htc);
       }
       
   </style>
</head>
<body>
   <form id="form1" runat="server">
   <div>
       <div class="test">
           这个页面是用以测试主机是否有正确的content-type。
       </div>
   </div>
   </form>
</body>
</html>
 

效果:

 

 



版权声明:
作者:真爱无限 出处:http://www.pukuimin.top 本文为博主原创文章版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接.
« 上一篇下一篇 »

相关文章:

评论列表:

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。