Hi, my personal way of doing what you require is
Code:
#container{width:100%;overflow:hidden;}
#longcolumn{float:left;width:49.5%;overflow:auto;}
#shortcolumn{float:right;width:49.5%;overflow:auto;padding-bottom:20em;margin-bottom:-20em;}
The 20em figure is variable and only has to be enough to cover the difference between the long and short column content difference. The figure used must be the same with padding having a plus value and the margin having a negative value.
If the situation arises where you do not which column would be the shorter then you would give both columns the plus padding - minus margin instruction. Jim