I have a Rails 3.2 project with Foundation 4 and I need to support Internet Explorer 8.
To enable the media queries in IE8 needed by the Foundation 4 grid I included Respond.js. I tested in IE8, but the layout remained the small devices layout. The respond.js testpage worked fine in IE8.
Why isn't the Foundation grid properly loaded in IE8?
I had the problem that IE8 doesn't seem to like the @import-property.
We used a global css file which imported the necessary styles. When moving all stylesheets to the assets pipeline via =* require custom.css it all started working
It's weird though, the regular bootstrap styling (buttons, backgrounds and such) got imported properly. The grid system was not. I guess Internet Explorer works in mysterious and retarded ways.