I have this div with 2 tables and one is larger than the other. what I want is for the smaller table to be aligned with the bottom of the div so the bottom line of the small table is adjacent the bottom of the large table. currently the two top lines are adjacent. Thanks.
<div style = "border:1px solid red; width:86;">
<table id = "small" style = "border:1px solid; float:left;">
<td style = "font-size:12;">small</td>
</table>
<table id = "large" style = "border:1px solid;">
<td style = "font-size:20;">Large</td>
</table>
</div>