08/15: iFrame in Tabelle mit Netscape

Beitrag lesen

Hat jemand noch einen andern Vorschlag?
Gruss Marco

Hallo Marco !
Dein Problem taucht hier alle furz-lang mal auf und ist die Folge davon, daß die neuen Navigators voll auf CSS setzen und den alten HTML-Kram ( width/height=100%)nicht mehr so recht unterstützen wollen !
Dadurch ist vieles komplizierter geworden.
Ich bin auch ständig am rumexperimentieren !
Versuch's mal damit und experimentiere halt selber 'n bißchen mit Style-Sheets herum :

<html>
<style type="text/css">
.zelle { margin-left:auto; margin-right:auto; width:200px;}
table { margin-left:auto; margin-right:auto; background-color:#ddeeff;}
iframe { margin-left:auto; margin-right:auto; width:100%; height:100%; border-top:0pt; border-bottom:0pt; border-left:0pt; border-right:0pt}
</style>
<body>
<table width="100%" height="100%" cellspacing="5">
  <tr>
    <td class="zelle" bgcolor="#000000"> </td>
    <td><iframe src="spade.jpg" frameborder="0">Hallo !</iframe></td>
    <td class="zelle" bgcolor="#000000"> </td>
  </tr>
</table>
</body></html>