Hallo allerseits!
Ich habe folgendes Problem:
Innerhalb eines div-Tags definiere ich eine Tabelle mit einer Breite von 100%.
Im Firefox sieht es wie erwartet aus, allerdings nicht im MSIE.
Dort ist die TAbelle breiter als 100% und erzeugt deshalb Scrollbalken.
Woran liegt das, wie kann man das beheben?
Hier der zugehörige Quellcode:
<!-- Quellcode Anfang -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="00" topmargin="0" marginwidth="0" marginheight="0">
<div style="padding-left: 15px; padding-right: 15px">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr bgcolor="#FF0000">
<td>Test Tabelle</td>
<td>Test Tabelle</td>
</tr>
</table>
</div>
</body>
</html>
<!-- Quellcode Ende -->
Vielen Dank im vorraus,
Turtle