Making Zurb's Foundation 3 work with IE7

前端 未结 2 543
无人及你
无人及你 2021-02-08 11:15

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 presen

2条回答
  •  不要未来只要你来
    2021-02-08 11:56

    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.

提交回复
热议问题