con il wrapper mi viene:
codice:
<html>
<body>
<div id="header">header</div>
<div id="wrapper">
<div id="main_content">main content</div>
<div id="featured_articles">featured articles</div>
<div id="navbar">navigation bar</div>
</div>
<div id="sidebar">sidebar and footer</div>
</body>
</html>
usando questo CSS
codice:
body {
margin:2px; min-width: 600px;
}
#header {
width:100%;
clear:both;
#navbar {
background-color:#0FF;
float:left;
width:100%
}
#main_content {
background-color:#FF9900;
float:right;
width:100%;
}
#featured_articles {
background-color:#ffffcc;
clear:both;
width:100&
}
#sidebar {
width:100%;
clear:both;
}