|
There is a way to do it without css, the old way. I don't really want to lead you in that direction, but I guess it's alright since all you have to do is do a quick google search and you'll find it anyway Here's three ways to achieve what you want.
td { vertical-align:top; }
affects all td tags on the page. If that is not what you want, create a class:
.tdtop { vertical-align:top; }
<td class="tdtop">
or you could go the old way with simply putting:
<td valign="top">
Have fun...
|