码迷,mamicode.com
首页 > Web开发 > 详细

使用PIE.htc 进行IE兼容CSS3

时间:2018-05-18 11:31:19      阅读:467      评论:0      收藏:0      [点我收藏+]

标签:url   ext   order   元素   注意   nbsp   text   hack   title   

步骤:

1、引入文件。注意PIE.htc文件和css文件要放在同一个目录下;

2、在css元素中加上  behavior:url(pie.htc);

3、可以愉快的写css hack啦 ,这时需要的圆角平移等等部分css3属性在ie6\7\8上都可以展示出来

<!DOCTYPE html>    
<html>    
<head>    
    <title></title>    
<style type="text/css">    

   .container{  
   width:250px;  
   height:250px;  
   background-color:#34538b;  
   -moz-border-radius:5px;
   -webkit-border-radius:5px;
   box-border-radius:5px;
   behavior:url(pie.htc);  
   }  
</style>    
   
</head>    
<body>    
    <div class="container"></div>  
</body>    
</html> 

 

使用PIE.htc 进行IE兼容CSS3

标签:url   ext   order   元素   注意   nbsp   text   hack   title   

原文地址:https://www.cnblogs.com/wmydb/p/9054864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!