Morgen,
ich hoffe ich hab dich richtig verstanden:
HTML
<html>
<head>
<style type="text/css">
body {
margin: 0 auto;
padding: 0;
background: #ffffff;
height: 100%;
text-align:center;
}
#wrapper {
width: 780px;
margin: 0 auto;
border: 1px solid #CCC;
}
#banner {
height:100px;
width:780px;
background-color:#CCCCCC;
text-align:left;
}
#content-wrapper {
width: 450px;
margin: 0 auto;
}
#inhalt {
float: left;
height:500;
width:150;
background-color:#999999;
text-align:left;
}
#navi-links {
float: left;
width:150px;
background-color:#666666;
text-align:left;
}
#navi-rechts {
float: left;
width: 150px;
background-color:#333333;
text-align:left;
}
#footer {
height:100px;
width:780px;
background-color:#CCCCCC;
text-align:left;
}
.clear { clear:both; display:block; }
</style>
</head>
<body>
<div id="wrapper">
<div id="banner">Banner</div>
<div id="content-wrapper">
<div id="navi-links">links</div>
<div id="inhalt">Inhalt</div>
<div id="navi-rechts">rechts</div>
</div>
<div class="clear"></div>
<div id="footer">footer</div>
</div>
</body>
</html>
Alles anzeigen
lg michi