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

htc支持CSS3

时间:2015-09-05 00:02:47      阅读:250      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!