Making Zurb's Foundation 3 work with IE7

蹲街弑〆低调 提交于 2019-12-03 06:20:52

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.

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