Ver Mensaje Individual
  #13 (permalink)  
Antiguo 21/02/2012, 05:10
joseoliveras
 
Fecha de Ingreso: febrero-2012
Mensajes: 84
Antigüedad: 12 años, 2 meses
Puntos: 14
Respuesta: Incompatibilidad con Explorer: CSS para el

Prueba con

Código CSS:
Ver original
  1. <link rel="stylesheet" type="text/css" href="main.css" />
  2. <!--[if gte IE 7]><link rel="stylesheet" type="text/css" href="ie7_8.css" /><![endif]-->
  3. <!--[if IE 6]><link rel="stylesheet" type="text/css" href="ie6.css" /><![endif]-->

Cita:
Now, if the visitor is using IE7 or greater (gte = greater than or equal to), the ie7_8.css file will be loaded and overwrite our main.css rules. Ditto ie6.css.
Este es el artículo:
http://www.daobydesign.com/blog/tips/css-html/using-conditional-comments-to-catch-ie/

Yo no suelo usarlo, solo uso condicionales en algunas reglas:
http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-how-to-target-ie6-ie7-and-ie8-uniquely-with-4-characters/