标签:title 兼容模式 com htm 兼容 type 浏览器兼容 doctype 去掉
现在设计的东西,很多浏览器不兼容。下面贴出代码。测试在360和IE浏览器下,可以兼容的
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<!-- 浏览器兼容 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="renderer" content="webkit|ie-comp|ie-stand">
<title>test</title>
</head>
<body>
</body>
</html>
如果粘贴代码没有效果,去掉“<meta http-equiv="X-UA-Compatible" content="IE=edge">”试试。
标签:title 兼容模式 com htm 兼容 type 浏览器兼容 doctype 去掉
原文地址:http://www.cnblogs.com/lengxiaofeng/p/7080220.html