Tabellenbreite wird im IE8 ignoriert

Tomek_FFM

Mitglied
Hallo,
ich habe hier eine ältere Anwendung vorliegen, die auf bestimmten Seiten im IE Darstellungsfehler enthält. Reduziert sieht das Layout wie folgt aus:

HTML:
	<table border="0" cellspacing="0" cellpadding="0" height="100%">
	  <tr bgcolor="#F7F3D6">
		<td colspan="2" height="120">
			<div style="float:left; width:250px;height: 100px;">
				<a href="#">Link1</a>
				<a href="#">Link2</a>
			</div>
			<div style="clear:both;"></div>
			<div style="float: left; width:215px;">
				Datum
			</div>                                    
			<div style="float: left; width:530px;">
				Brotkrümelleiste
			</div>                                 
			<div style="float: left; width:335px; text-align:right;">
				User
			</div>
			<div style="clear:both;"></div>
		</td>
	  </tr>

	  <tr bgcolor="#CC00AA">
		<td valign="top" width="206" bgcolor="#00FFFF">Box A</td>
		<td valign="top">
			<table width="100%" border="0" cellspacing="12" cellpadding="0" >
			  <tr bgcolor="#AAAAAA">
				<td width="100%">
					Meldung
				</td>
			  </tr>
			</table>
		</td>
	  </tr>
	</table>

Im FF 3.5.11 ist "Box A" die vorgegebenen 206 Pixel breit, im IE jedoch wird diese Angabe ignoriert und "Box A" ist je nach Länge des Inhalts in der Meldungsbox verschieden Breit.

Hat jemand eine Idee, woran es liegen könnte? Das "gemischte" Layout mit Tabellen und Div's muss leider erstmal so bestehen bleiben...
 
Zurück