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

IE9下支持css3的方法

时间:2017-11-03 17:37:19      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:css3   doc   head   div   pre   body   copy   下载地址   .com   

今天在写css3效果的时候,发现在IE9下css3是无效的

解决:下载PIE(下载地址:http://css3pie.com/),引用:behavior:url(PIE.htc)注意路径应是同html文档同一目录下

小实例:

技术分享
技术分享
<!DOCTYPE html>
<html>
<head>
    <title></title>
    <style type="text/css">
        .border{width: 100px;height: 100px;border-radius: 10px;background-color: #f60;behavior:url(PIE.htc);}
    </style>
</head>
<body>
    <div class="border">
    </div>
</body>
</html>
技术分享
技术分享

在IE9下的效果图:

技术分享

IE9下支持css3的方法

标签:css3   doc   head   div   pre   body   copy   下载地址   .com   

原文地址:http://www.cnblogs.com/l0520/p/7779258.html

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