次のようなものを使用できます:http: //jsfiddle.net/Urbrf/6/
html
<div id="wrapper">
<div class="halfWidth left">
<div class="padding">
<div id="columnOne" class="fullWidth">
</div>
<div id="columnTwo" class="fixedWidth">
</div>
</div>
</div>
<div class="halfWidth right">
<div class="padding">
<div id="columnThree" class="fullWidth">
</div>
</div>
</div>
</div>
CSS
#wrapper {width:100%;}
.halfWidth {width:50%;}
.fullWidth {width:100%;}
.left,
.left .fullWidth {float:left;}
.left .padding {padding-right:100px;} /*half of the fixed width*/
.right,
.right .fullWidth {float:right;}
.right .padding {padding-left:100px;} /*half of the fixed width*/
.fixedWidth {width:200px; margin-right:-200px; float:right;}