IE8浏览器不支持CSS3特性 – 媒体查询。Bootstrap在开发文档中已经明确指出, IE8 需要 Respond.js 配合才能实现对媒体查询(media query)的支持。在HTML文件标签底部添加了如下的代码:

<!--[if lt IE 9]>
  <script src="https://cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://cdn.bootcss.com/respond.js/1.4.2/respond.js"></script>
<![endif]-->

这句代码的意思是:只有小于ie9的ie浏览器才会识别到,其他浏览器就会当成是注释的代码过滤掉!