关于html5的几个新标签在IE9之前不支持的解决办法

IE8及之前的浏览器不支持用CSS的方法来使用这些尚未支持的结构元素,为了在Internet Explorer浏览器中也能正常使用这些结构元素,需要使用JavaScript脚本,如下:
<script>
document.createElement("header");
document.createElement("nav");
document.createElement("article");
document.createElement("footer");
</script>

<style>
article,aside,dialog,figure,footer,header,legend,nav,section{display:block;}
nav{float:left;20%;}
article{float:right;79%;}
</style>

原文地址:https://www.cnblogs.com/919czzl/p/4888132.html