Skip to content Skip to sidebar Skip to footer

Css3 Media Query Not Working In Ie Below Ie10

I have created a responsive email template and the problem is media queries are not working in below IE10 browser. I have used js library to make it run but it is not working. <

Solution 1:

Best media query hacks for IE would be

 IE10 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {}
 IE8 @media \0screen {}
 IE7 @media screen\9 {}

You can add your IE specific CSS code within any of the media queries above.

Read more here: http://browserhacks.com/

Solution 2:

I also saw IE 9 is @media screen and (min-width:0\0) {}

Question - Can you just add that snippet of code in the style tags or do you also need to add all applicable CSS in between the { }?

Post a Comment for "Css3 Media Query Not Working In Ie Below Ie10"