Fixed / Fluid / Fixed

by helpinspireme

HTML

<div class="content-wrapper">
<div class="center-column">
center
</div>
</div>

<div class="left-column">
left
</div>

<div class="right-column">
right
</div>

CSS

.content-wrapper{
float: left;
width: 100%;
}

.center-column{
margin: 0 200px 0 230px;
}

.left-column{
float: left;
width: 230px; /*Width of left column*/
margin-left: -100%;
background: #C8FC98;
}

.right-column{
float: left;
width: 200px; /*Width of right column*/
margin-left: -200px; /*Set left marginto -(RightColumnWidth)*/
background: #FDE95E;
}