名站网址导航为大家提供关于网站网页设计设计相关的的教程知识。
- 本篇文章具体介绍如下
在网站网页设计里面加入这行具体代码就可以使IE8使用兼容视图:
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
具体代码示例:
复制具体代码 具体代码如下:
<html>
<head>
<!-- Use IE7 mode -->
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<title>My Web Page</title>
</head>
<body>
<p>Content goes here.</p>
</body>
</html>
如果你用 IIS 服务器, 可以配置 Web.config 文件:
复制具体代码 具体代码如下:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<httpProtocol>
<customheaders>
<clear />
<add name="X-UA-Compatible" value="IE=EmulateIE7" />
</customheaders>
</httpProtocol>
</system.webServer>
</configuration>
如果用的是Apache 服务器,可以配置 httpd.conf 文件:
LoadModule headers_module modules/mod_headers.so
header set X-UA-Compatible “IE=EmulateIE7”
以上是使所有的网站网页设计都使用兼容视图。 如果只想让个别目录下的文件用兼容视图,在<location>下设置:
复制具体代码 具体代码如下:
<Location /myfolder>
header set X-UA-Compatible “IE=EmulateIE7”
</Location>
好了关于网站网页设计设计相关的这篇文章就给大家介绍到这里不明白的地方给本站留言。声明,本站内容来源于互联网,如果侵犯了你的权益请联系本站删除。,IE8,显示兼容css 背景图片平铺技巧