gpt4 book ai didi

responsive-design - 如何为 IE 7+ 提供新的 Zurb Foundation 支持?

转载 作者:行者123 更新时间:2023-12-04 17:36:51 26 4
gpt4 key购买 nike

我最近建立了一个响应式网站。我用 Zurb Foundation因为一些建议和文章是使响应式网站更高效的最佳解决方案。但是问题是,新版Foundation不支持IE 7+,如你所见here ,但我希望我的网站支持所有 IE 版本。有些人建议建议使用旧的 Foundation(即第 3 节)。但我认为最新的版本是最好的。

我的问题是,有什么解决方案可以使新的 Foundation(第 4 版)支持 IE?
我需要建议,因为我在这里堆栈。谢谢

最佳答案

IE7 和 IE8 的问题在于它们没有内置对媒体查询的支持。

有一些选项 5 月 帮助你,cross-browser polyfills为旧浏览器添加媒体查询支持。

最受欢迎的两个是respond.jscss3-mediaqueries.js .我在这两个方面都取得了成功。

在页面的头部,您测试浏览器并在必要时加载这些脚本之一。

我过去这样做的方法要么是有条件的评论:

<!--[if (lt IE 9) & (!IEMobile)]>
<script src="path-to/respond.js"></script>
<![endif]-->

或使用 modernizr
Modernizr.load([
{
// The test: does the browser understand Media Queries?
test : Modernizr.mq('only all'),
// If not, load the respond.js file
nope : '/js/respond.js'
}
]);

这两种方法都很容易尝试,即使在这种特定情况下对您没有帮助,您也可能有机会在另一个站点上再次尝试它们。

祝你好运!

关于responsive-design - 如何为 IE 7+ 提供新的 Zurb Foundation 支持?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15995637/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com