IE7

IE7 und inline-blocks: ein CSS Trick

IE7 hat ein Problem mit inline-blocks.

FF und IE8 zeigen die Blocks richtig an, IE7 als normale verticale Tabelle.

Abhilfe:

div {
display: -moz-inline-stack; /* für FF2 */
display: inline-block; /* für FF3, IE8... */
zoom: 1; /* für IE7 */
*display: inline; /* für IE7 und IE6 */
}

Dann funktionierts - zumindest im IE7...
(HTML-Element bzw. Klasse muß natürlich angepasst werden!)

RSS - IE7 abonnieren