Prihlásiť

IE hack


min-height hack

15. 2. 2010 Zobraziť článok
selector {
    min-height: 200px;
    height: auto !important; /* IE6 will ignore !important */
    height: 200px;
}

/* version with underscore hack */
selector {
    min-height: 200px;
    height: auto;
    _height: 200px;
}

Zobraziť článok

CSS only hack

22. 12. 2005 Zobraziť článok
html>body selector /* not for IE<=6 */
_property: value; /* for IE<=6 */
#property: value; /* for IE7 */ 

Zobraziť článok

whatever:hover

17. 11. 2005 Zobraziť článok
support the :hover selector for ANY html element via behavior http://www.xs4all.nl/~peterned/csshover.html
Zobraziť článok