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.
在我的网站中,所有的 CSS 对齐方式在 IE10 中都完全改变了。如果我在 IE10 中禁用兼容模式,那么它可以正常工作。如何通过我的 HTML 代码禁用兼容模式?
head在标签中添加以下行。
head
!-- Force IE to use the latest version of its rendering engine --> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
通过告诉 IE 在您的页面中使用其渲染引擎的最新版本。