<!DOCTYPE html>
<html>
<head>
<title>Title</title>
<style type="text/css">
#container {
max-width: 1500px;
background: red;
}
#header {
height: 200px;
background: purple
}
#columnscontainer {}
.column {
width: 33.3%;
float:left;
height: 200px;
background: cyan;
}
.clear {
clear:both
}
</style>
</head>
<body>
<div id="container">
<div id="header">Header</div>
<div id="columnscontainer">
<div class="column">Col 1</div>
<div class="column">Col 2</div>
<div class="column">Col 3</div>
<div class="clear"></div>
</div>
</div>
</body>
</html>