Liebes Forum
Ich bin am basteln einer Website und habe jetzt ein footer problem
ich arbeite mit tabellen. mein unteres Beispiel läuft perfekt im Firefox aber im ie und opera nicht, ich komme einfach nicht dahinter warum das so ist, vielleicht könnt ihr mir ja helfen
hier das Beispiel:
<html>
<head>
<title>Fusszeile</title>
<style type="text/css">
<!--
body, html {
height:100%;
margin:0px;
border-collapse: collapse;
}
td {
text-align:left;
vertical-align:top;
}
-->
</style>
</head>
<body><table style="height:100%; min-height:100%;">
<tr>
<td style="height:50px;background-color:#FF0000;">Head</td>
</tr>
<tr>
<td style="height:100px;background-color:#00FF33;">Content</td>
</tr>
<tr>
<td style="height:100%;background-color:#CCCCCC;">Füller</td>
</tr>
<tr>
<td style="height:50px;background-color:#0000FF;">Footer</td>
</tr>
</table>
</body>
</html>
Danke im Vorraus!!!