CSS code:
#wrapper {margin:auto; width:100%;}
.container {display: table; width:100%;}
.row {display: table-row;}
.cell {display: table-cell; height: 100px;}
#fixed {width:150px;}
HTML code:
<div id="wrapper">
<div class="container">
<div class="row">
<div class="cell" id="fixed">left cell</div>
<div class="cell">right cell</div>
</div>
</div>
</div>
How would I put a picture into the left cell? Suppose the picture to be 150px wide and 100px height.