Фиксированный пятиколоночный макет (position left right)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="5-columns-position-left-right.css">
</head>
<body>
<div class="layout">
<div class="column1">column1</div>
<div class="column2">column2</div>
<div class="column3">column3</div>
<div class="column4">column4</div>
<div class="column5">column5</div>
</div>
</body>
</html>
.layout {
border: 1px red solid;
}
.column1, .column2, .column3, .column4, .bcolumn5 {
position: absolute;
}
.column1 {
width: 100px;
left: 0;
background: #ede;
}
.column2 {
left: 100px;
right: 350px;
background: #ced;
}
.column3 {
width: 200px;
right: 150px;
background: #dde;
}
.column4 {
right: 50px;
width: 100px;
background: #ded;
}
.column5 {
right: 0;
width: 50px;
background: #eed;
}