#css: Make a Layout With Fluid and Fixed-size Columns
/*  HTML */
<div id=fluid>
	<!-- Content goes here. -->
</div>
<div id=fixed-width>
	<!-- Content goes here. -->
</div>
/*  CSS */
#fluid {
	display: table-cell;
	vertical-align: top;
}
#fixed-width {
	display: table-cell;
	width: 250px;
	vertical-align: top;
}