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.
我正在尝试在我们的网站上实现基本的 flexslider。它适用于 chrome、Firefox 和 safari。但在所有版本的 IE 中,它只会炸掉页面的整个宽度和高度。这是链接。请指教
我试过这个对我有用。
在标题标签中添加以下行以强制 IE 以最新的文档模式呈现。
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
在 ie9 中有类似的问题 - 通过为 div 设置固定宽度来解决,在 CSS 中包含滑块。
.metaslider { width: 720px; }
希望这可以帮助。