Is there anyway that I can make IE9 ignore media queries or obey min-width?
I have a site that I have used media queries for responsive design for mobile devices and they work great, they also work great in all modern browsers. The problem is that I have some users that are using quite old browsers (some are still using IE6 believe it or not, no fault of their own and completely unavoidable) so I have a conditional style sheet for IE9 and set the min-width of the page because I don't want any of the media queries I have used to apply to those browsers.
body{
min-width:1000px !important;
}
Both IE9 and and IE8 are obeying all of the rules I have put in the conditional stylesheet except IE9 which is ignoring the min-width rule for the body. That means when it is resized the media rules kick in and kill the layout.
Is there a reason why IE9 would ignore min-width or is there a conditional statement I can use so the media queries don't apply to IE9?