Фиксированный трёхколоночный макет (float)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="3-columns-float.css">
</head>
<body>
<div class="layout">
<div class="nav">nav</div>
<div class="content">content</div>
<div class="sidebar">sidebar</div>
</div>
</body>
</html>
.layout {
width: 980px;
margin: auto;
overflow: hidden;
}
.nav, .sidebar, .content {
float: left;
height: 500px;
}
.nav {
width: 180px;
background: #dde;
}
.sidebar {
width: 200px;
background: #eed;
}
.content {
width: 600px;
background: #ede;
}