Tag: hack
<< Anterior
Siguiente >>
Hack para Internet Explorer 7
Sencillo y práctico
*+HTML elemento { reglas }
En CSS ie internet explorer 7 hack css por yakichan hace on 21/2/08 | Comentarios
Clearfix CSS Hack
Más info en http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack/
/* slightly enhanced, universal clearfix hack */ .clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } .clearfix { display: inline-block; } /* start commented backslash hack */ * html .clearfix { height: 1%; } .clearfix { display: block; } /* close commented backslash hack */
En CSS hack float clear por alberto hace on 17/2/08 | Comentarios
Hack CSS para Internet Explorer 7
Un asterisco delante de la propiedad CSS y así sólo será reconocida por Internet Explorer 6 y 7
Usar !important cuando no queremos dar cierta propiedad a IE6
body { background: #fff; /* Todos los navegadores */ *background: #000; /* IE6 e IE7 */ }
Hack exclusivo para IE7
body { background: #fff !important; /* Firefox, IE7 y los demás */ background: #000; /* IE6 y anteriores */ }
Más en http://granimpetu.com/articulos/hack-css-para-internet-explorer-7/
body { background: #fff !important; /* Firefox y los demás */ *background: #000 !important; /* Sólo IE7 */ *background: #ccc; /* Sólo IE6 */ }
En CSS hacks por admin hace on 30/1/08 | Comentarios
<< Anterior
Siguiente >>
