Making Zurb's Foundation 3 work with IE7

喜欢而已 提交于 2019-12-03 17:15:26

问题


A solution has been proposed for making Zurb's Foundation 3 Framework work with IE7. Not necessarily complicated support, but certainly grid support.

Solution is presented as: http://www.stormconsultancy.co.uk/blog/development/code-snippets/making-zurb-foundation-3-work-on-ie7/

I've tried to replicate this here: http://sausag.es/foundation/grid.html

I've added a link to the htc file in my foundation.min.css

The reference is relative to the HTML, not the CSS.

I've added a line in htaccess about the htc file.

But still I cannot get the grid to show in IE7 as it does in IE8. Where am I going wrong?


回答1:


The following line in your stylesheet:

*behavior: url(/stylesheets/box-sizing.htc);

translates to the following address:

http://sausag.es/stylesheets/box-sizing.htc

which returns a 404. You could fix this by changing the line to:

*behavior: url(/foundation/stylesheets/box-sizing.htc);

or by moving the box-sizing.htc file down one folder.




回答2:


another solution would be to detect ie7 with conditional comments and then apply a css fix for columns like this:

.ie7 .columns{
    margin-right: -15px ;
    margin-left: -15px ;
    display:-moz-inline-stack;
    display:inline-block;
    zoom:1;
    *display:inline;
}

this clears the padding on the columns and fixes the grid. you can do the same on other divs or parts of the layout.

also, you will need to fix the centered columns and the offset-by columns like this:

.ie7 .row{
    clear: both;
    text-align: center;
}

.ie7 .offset-by-three {
    margin-left:25% !important;
}
.ie7 .offset-by-seven {
    margin-left:58.33% !important ;
}

and of course the conditional comments:

<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if IE 7]>    <html class="ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->


来源:https://stackoverflow.com/questions/12788381/making-zurbs-foundation-3-work-with-ie7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!