Gespeichert von admin am Mo., 2010-12-20 12:56
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!)