Michi B.: IE & <iframe> - BUG oder Problem

Beitrag lesen

Hallo Dim,
lege einfach ein Layer um dein iFrame.
Diesen kannst du dann deine Stilvorlagen zuweisen.

Beispiel:

[Style-Angabe innerhalb des Dokument-Kopfs]

<style type="text/css">
<!--
div.myFrame {
border: 1px solid #cccccc;
width: 200px;
height: 100px;
overflow: auto;
margin-bottom: 0px;
}
-->
</style>

[iFrame innerhalb des Bodys]

<div class="myFrame">
<iframe src="test.php?id=5" marginwidth="5" marginheight="5" frameborder="0"></iframe>
</div>

CU
MiCHi