Hans Wurst: Iframe in Table - Chaos -.-

Beitrag lesen

Hallo zusammen!

Ich kriege gerade einen ziemlichen Kollaps mit einer Tabelle, die mir einfach nicht gehorchen will.
Schaut euch mal den untenstehenden Code (in Ausführung) an. Ohne das Iframe (per Kommentar ausgeklammert) sieht die Tabelle genau so aus, wie ich sie haben will. Sobald ich das Iframe aber in die Tabelle einfüge, fallen große Teile der Tabelle einfach weg. Warum das?

<html>  
<head>  
<title>Index</title>  
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">  
</head>  
  
<table>  
  
<tr>  
  
 <td width=15 height=15 style="background-color: #FF0000;">  
 </td>  
  
 <td width=800 height=15 style="background-color: #FF0000;">  
 </td>  
  
 <td width=15 height=15 style="background-color: #FF0000;">  
 </td>  
  
</tr>  
  
  
<tr>  
  
 <td width=15 height=520 style="background-color: #FF0000;">  
 </td>  
  
 <td style="background-color: #FF0000;">  
<!-- <iframe src="Start.html" width=800 height=520 name="Inhalt"> -->  
 </td>  
  
 <td width=15 height=520 style="background-color: #FF0000;">  
 </td>  
  
</tr>  
  
  
<tr>  
  
 <td width=15 height=15 style="background-color: #FF0000;">  
 </td>  
  
 <td width=800 height=15 style="background-color: #FF0000;">  
 </td>  
  
 <td width=15 height=15 style="background-color: #FF0000;">  
 </td>  
  
</tr>  
  
</table>  
  
  
</body>  
</html>