bootstrap兼容ie8以下版本

由于bootstrap用到了css3+html5 并且ie8以下的浏览器不支持css3和html5。很多公司现在都市ie8以下的浏览器不用兼容的,但是也有好多地方需要兼容。遇到这样的问题很好解决,只需将下面这段代码加入head中即可。

<!--[if lte IE 9]>
<script src="components/bootstrap/dist/js/respond.min.js"></script>
<script src="components/bootstrap/dist/js/html5.js"></script>
<![endif]--> 

你可能感兴趣的:(bootstrap兼容ie8以下版本)