首页 > Web开发 > 详细

htc支持CSS3

时间:2015-09-05 00:02:01      阅读:294      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>html5标签</title>

    <style>
.round{
    width: 100px;
    height: 100px;
    background: red;
    box-shadow: 5px 0 5px #000;
    border-radius: 50px;
}
    </style>

</head>
<body>
<div class="round">

</div>
</body>
</html>

技术分享

css3的border-radius在IE下没有效果,加上:

behavior: url(ie-css3.htc);
<!DOCTYPE html>
<html lang="zh">
<head>
    <meta charset="UTF-8">
    <title>html5标签</title>

    <style>
.round{
    width: 100px;
    height: 100px;
    background: red;
    box-shadow: 5px 0 5px #000;
    border-radius: 50px;
    behavior: url(ie-css3.htc); 
}
    </style>

</head>
<body>
<div class="round">

</div>
</body>
</html>

技术分享

htc支持CSS3

原文:http://www.cnblogs.com/tinyphp/p/4782543.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!