An excellent book + matching coursework --> learning wherever you are

Chapter 12: Building Float-Based-Layouts

ROUGH DRAFT -- SHOULD BE SUITABLE FOR USE IF YOU'RE NOT PATIENT. :-)

If you have two floated columns side-by-side, and the right column's content is larger than the left column's, what is a way to prevent the right column's content from wrapping underneath the left column?
Suppose the following styles were used to implement the two columns as divs:
.leftcol { float: left; width: 170px; }
.rightcol { float: right; }