Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个网站。它的一个部分看起来就像我想要的IE9那样IE8。但是当IE9 compatibility mode被选中时,外观会发生变化。我怎么能为此写一个hack?
IE9
IE8
compatibility mode
简短的回答:不要使用兼容模式。
<head>您可以通过HTML 代码部分中的以下行强制 IE 不使用兼容模式:
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
希望有帮助。