ddd: Iframe IE vs. Firefox

Beitrag lesen

Du könntest aber mit Hilfe von "conditional Comments" für den MSIE die proprietäre Eigenschaft "overflow-x" und "overflow-y" für diesen Browser anwenden.

Right-Ho
Müßte eigentlich funktionieren:

<!--[if lte IE 6]>
<style type="text/css">
html {overflow-x:hidden;}
body {margin-right:18px;}
</style>
<![endif]-->

Gruß ddd