bootstrap IE8 兼容性处理
程序员文章站
2022-06-07 23:48:25
bootstrap ie8 兼容性处理
bootstrap ie8 兼容性处理
<!doctype html> <html lang="zh-cn"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>bootstrap ie8兼容性</title> <link href="css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" rel="external nofollow" /> <!--[if lt ie 9]> <script src="//cdn.bootcss.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="//cdn.bootcss.com/respond.js/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="row"> <div class="col-sm-6" style="border: 1px solid red;"> 左侧 </div> <div class="col-sm-6" style="border: 1px solid green;"> 右侧 </div> </div> </div> </body> </html>
针对 ie8 仍然需要额外引入 respond.js 文件以支持媒体查询(media query)。
1、http协议下效果(如:http://192.168.12.40:8020/bootstrap/index.html):
2、file文件协议ie8下效果(如:c:\users\dell\documents\hbuilderproject\bootstrap\index.html)
如上图所示,已经不支持栅格布局。
主要存在的问题是:
respond.js 与 file:// 协议
由于浏览器的安全机制,respond.js 不能在通过 file:// 协议(打开本地html文件所用的协议)访问的页面上发挥正常的功能。如果需要测试 ie8 下面的响应式特性,务必通过 http 协议访问页面(例如搭建 apache、nginx 等)。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读
-
BootStrap Table 后台数据绑定、特殊列处理、排序功能
-
bootstrap IE8 兼容性处理
-
主板兼容性差引起黑屏的处理
-
JS 组件系列之Bootstrap Table 冻结列功能IE浏览器兼容性问题解决方案
-
Bootstrap导航菜单点击后无法自动添加active的处理方法
-
SQL Server2008数据库导入导出兼容性处理方案
-
详解处理bootstrap4不支持远程静态框问题
-
ie8下使用bootstrap不能显示icon的图标
-
Bootstrap 3浏览器兼容性问题及解决方案
-
html5那些新特性,移除了哪些元素?如何处理html5的兼容性问题?如何区分html和html5?