the above website displays hidden layouts in ie8. Which are meant to display only in low screen resolution. i used "display:none" using css media query. It works fine in other browsers. But in IE8, it does not work.
Asked
Active
Viewed 67 times
3 Answers
0
Css media queries are not supported by IE8 but there are ways to get around IE7, IE8 support for css3 media query

Community
- 1
- 1

Remo H. Jansen
- 23,172
- 11
- 70
- 93
0
Try something like
<!--[if lte IE 8]>
<style type="text/css" media="screen">
/*
.yourclass { display: none; }
</style>
<![endif]-->

Vijayakumar Selvaraj
- 523
- 4
- 16