I\'m trying to use this layout with two 50% column width instead. But it seems that when the right columns reaches its \'min-width\', it goes under the left column. Is there
Try this for the style:
.left, .right { width:50%; float: left; } .right { float: right; } .minwidth { min-width: 500px; display: block; height: 0; clear: both; }