h5新標簽IE8不兼容怎麽辦?
阿新 • • 發佈:2017-06-07
doctype lan right otto cnblogs spa pre document con
<!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不兼容怎麽辦?