Hallo,
ich habe Ärger mit dem "Footer-Container" in einem Layout. Im Firefox wird alles ordentlich dargestellt, nur der IE macht mal wieder Probleme.
Hier ist mein CSS-Code:
Und so sieht der HTML-Code dazu aus:
Weis jemand Rat, wieso der IE den Footer nicht anzeigt?
Gruß,
Arndtinho
ich habe Ärger mit dem "Footer-Container" in einem Layout. Im Firefox wird alles ordentlich dargestellt, nur der IE macht mal wieder Probleme.
Hier ist mein CSS-Code:
Code:
#container {
margin-right: auto;
margin-left: auto;
width: 950px;
height: 741px;
}
#top {
margin-top: 0;
height: 100px;
width: 950px;
}
#left {
float: left;
margin-left: 0;
margin-top: 0;
width: 150px;
height: 541px;
line-height: 15px;
background-color: #233C4C;
}
#content {
float: right;
margin-top: 0;
height: 541px;
width: 800px;
line-height: 15px;
background: url( ../img/background.jpg );
}
#footer {
position: absolute;
margin-top: 541px;
width: 950px;
height: 100px;
line-height: 15px;
background-color: #233C4C;
}
HTML:
<div id="container">
<div id="top"></div>
<div id="left"></div>
<div id="content">
<?= $content_for_layout; ?>
</div>
<div id="footer"></div>
</div>
Gruß,
Arndtinho