
Trotz aller Verbesserungen und die recht komfortable CSS-Unterstützung für den Internet Explorer 8, kann es immer wieder Fälle geben, in denen man auf einen CSS-Hack zurückgreifen muss. Hier ist ein CSS-Hack, welcher im IE8 Standard-Modus funktioniert.
.elementORClass {
color /*\**/: blue\9
}
Dieser IE CSS-Hack ist für alle IE Versionen gültig:
.elementORClass {
color: blue\9
}
Tags: css, hack, ie6, ie7, ie8
Kategorie ie | 12 comments
I use the CSS clearfix hack on nearly all of my sites. The clearfix hack — also known as the “Easy Clearing Hack” — is used to clear floated divisions (divs) without using structural markup. It is very effective in resolving layout issues and browser inconsistencies without the need to mix structure with presentation.
Kategorie css | 0 comments








