Como soportar CSS media queries en Internet Explorer
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
Asegúrate de probar respond.js es rápido y ligero para las media query min y max-ancho de CSS3 media queries para IE versiones 6 a 8.
Entonces hariamos por ejemplo que cualquier navegador version menor a IE 9
<head> <!-- Css general IE6, IE7 and IE8 --> <link rel="stylesheet" type="text/css" href="all-min.css" /> <!-- CSS media query para IE otras versiones --> <!--[if lt IE 9]> <link rel="stylesheet" type="text/css" href="smartphone.css" media="only all and (max-width: 480px)" id="stylesheet-480" /> <link rel="stylesheet" type="text/css" href="tablets.css" media="only all and (min-width: 480px) and (max-width: 1024px)" id="stylesheet-1024" /> <link rel="stylesheet" type="text/css" href="wide.css" media="only all and (min-width: 1200px)" id="stylesheet-1280" /> <script type="text/javascript" src="/js/css-media-query-ie.js"></script> <![endif]--> </head>