Hallo,
warum wird eigentlich wenn ich
einsetze die Hintergrundfarbe vom DIV footer gekillt?
Gruß
warum wird eigentlich wenn ich
PHP:
clear:both
PHP:
body
{
padding: 0;
margin: 0;
text-align: center;
}
#wrapper
{
background-color: #CC0000;
margin: 0 auto;
width: 985px;
padding: 20px;
text-align: left;
}
#header
{
background-color: #669933;
width: 985px;
height: 110px;
margin: 0;
padding: 0;
}
#top
{
height: 45px;
background-color:#96C5C5;
}
#left
{
background-color:#663333;
width: 170px;
min-height: 540px;
float: left;
}
#content
{ background-color:#0033CC;
margin: 0px 0px 0px 0px;
padding: 0 0 0 0px;
min-height: 540px;
width: 815px;
float: left;
}
#footer
{
background-color: #66FF66
clear: both;
margin: 0;
padding: 0;
}
PHP:
</head>
<body>
<!-- wrapper -->
<div id="wrapper">wrapper
<!-- header -->
<div id="header">header</div>
<!-- top -->
<div id="top">top</div>
<!-- left-->
<div id="left">left</div>
<!-- content -->
<div id="content">content</div>
<!-- footer -->
<div id="footer">footer</div>
<!-- fix position end -->
</div>
</body>
</html>
Gruß