h5新标签IE8不兼容怎么办?

Posted jinsuo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了h5新标签IE8不兼容怎么办?相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        body{
            clear: both;
            *zoom:1;

        }
        body:after{
            content: ‘‘;
            display: block;
            clear: both;
            visibility: hidden;
            height: 0px;
        }
        header{
            width: 100%;
            height: 100px;
            border: 1px solid #666;
            float: left;
            margin-bottom: 60px;
        }
        footer{
            width: 100%;
            height: 100px;
            border: 1px solid #666;
            margin-top: 100px;
            float: left;
            
        }
        section{
            width: 80%;
            height: 300px;
            border: 1px solid #666;
            float: left;
            box-sizing: border-box;
        }
        aside{
            width:20%;
            height: 300px;
            border: 1px solid #666;
            float: right;
            box-sizing: border-box;
        }
    </style>
    <script type="text/javascript" src="js/html5shiv.js"></script>  
</head>
<body>
    <header>头部</header>
    <section>主体</section>
    <aside>侧边栏</aside>
    <footer>底部内容</footer>

    
</body>
</html>

 

以上是关于h5新标签IE8不兼容怎么办?的主要内容,如果未能解决你的问题,请参考以下文章

解决ie8以下不兼容h5的新标签

H5C3--语义标签以及语义标签IE8兼容,表单元素新属性,度量器,自定义属性,dataList,网络监听,文件读取

IE6/IE7/IE8兼容H5标签

IE8及以下兼容h5标签的两种方法

处理H5新标签方法

如何解决IE6/IE7/IE8浏览器不兼容HTML5新标签的问题