Since Boilerplate has respond.js built-in, it should in theory be able to support following css:

@media only screen and (max-height: 580px){.rnd-class{:height:200px !important;}}

In FF and Chrome, it works as expected and the custom styles kick in after resizing the browser window.

However, in IE8 the custom styles are always enabled - no matter how big the current browser window is.

I was thinking that the problem is inside my code somewhere, but than I visited the Boilerplate mobile template and I have noticed that it changes its layout on Browser rezize too and it uses the same media queries from the default Boilerplate.

However, even the mobile Boilerplate only works with FF and Chrome. Visiting it with IE8, the media queries dont kick in and I get served the version for the smallest device.

Now my question is: do you guys experience the same in IE8? How does this site look for you in IE8 and does it change its styles depending on the current browser window size?

Or is it probably related to my specific IE version? (I cant test it on another IE version right now).

And maybe, just maybe, some1 knows a solution to this?

P.S. I am currently using the default "Modernizr" (with respond.js build-in) script that comes with the HTML5 Boilerplate.

link|improve this question

Note that we have removed respond.js support from H5BP 3.0 – Divya Manian Feb 13 at 1:46
feedback

4 Answers

As an initial aside you've mentioned you haven't got access to other versions of IE, have you seen IETester? Using this tool I'm seeing the same behaviour as you where IE8 is not changing the styles in response to window size changes. IE9 correclty shows the main title resizing when the window size is reduced.

link|improve this answer
Thanks for the link! That software looks awsome :) Since you are not seeing any style-changes in IE8 too, we can assume its a bug not related to my code, am I right? – Andrej Nov 23 '11 at 10:33
feedback

According to http://caniuse.com/css-mediaqueries media queries are not supported in IE8. But you can build custom Modernizr, include MQ polyfil (respond.js) to enable MQ in this (and older) browsers.

link|improve this answer
I wrote in my question, that I am using the HTML5 Boilerplate, that has respond.js build in, but still it doesnt work... Whats your experience with IE on their mobile site ? Do the queries work for you when resizing the IE window? – Andrej Nov 23 '11 at 10:06
feedback

Respond.js only works with the width oriented media queries; so, it won't work with max-height. I'm currently look for a solution as well.

EDIT: I found a solution.

http://code.google.com/p/css3-mediaqueries-js/

Conditionally load that for script IE8 and below. You should be all set!

link|improve this answer
I cant believe that Respond.js doesn't work with max-height at all, because it does work fine in FF - it just doesn't in IE. Nevertheless, thank you very much! I will try the script you have linked tomorrow and let you know the outcome! – Andrej Dec 1 '11 at 0:16
feedback

I wrote a patch that enables min-height and max-height media queries with respond.js

Hopefully it gets integrated soon: https://github.com/scottjehl/Respond/pull/96

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.