Tabelle über gesamte Browsergröße im IE

Status
Nicht offen für weitere Antworten.

antifasctista

Grünschnabel
Hi,

ich schreibe gerade ein kleines Layout, habe aber das Problem, dass sich die Tabelle im InternetExplorer nicht über die gesamte Browsergröße erstreckt (im Firefox gehts problemlos).

HTML:
<html>
<head>
<title>TITEL</title>
</head>

<body>

<table cellspacing="0" cellpadding="0" border="0" style="height:100%; width:100%; position: absolute; top: 0; bottom: 0; left:0; right:0">
	<tr bgcolor="#2d689d" height="150">
		<td colspan="2" align="left" valign="top" align="left" background="headerbg.jpg"><img src="globe1.jpg" height="150"><img src="siemens.jpg"></td>
	</tr>
	<tr>
		<td bgcolor="#2d689d" width="239"></td>
		<td bgcolor="#fefffc">

--- INHALT ---

		</td>
	</tr>
	<tr height="35">
		<td bgcolor="#2d689d"></td>
		<td bgcolor="#4375b8" align="left"><img src="1.gif"><img src="2.gif"><img src="1.gif"><img src="3.gif"><img src="3.gif"><img src="4.gif"><img src="4.gif"><img src="4.gif"><img src="4.gif"></td>
	</tr>
</table>

</body>

</html>

Weiß jemand was ich machen muss, damits im IE auch geht?

//EDIT: Im IE ist rechts und unten ein weißer rand
 
Hi,

die Tabelle wird bei mir im IE problemlos in der horizontalen und vertikalen gestreckt.

Die "weißen Ränder" behebst du mit diesem Stylesheet, das im Dokumentheader eingesetzt wird.

Code:
<style type="text/css">
html,body {
margin:0;
padding:0:
}
</style>
mfg Maik
 
Status
Nicht offen für weitere Antworten.
Zurück