CSS Vertical Align
The vertical-align property sets the vertical alignment of an element. This is especially useful when working with tables. Since by default table cells align everything to the middle, if your content in one of the columns runs shorter than the other columns, you can align everything to the top!
1
2
3
td.top { vertical-align: top; }
td.middle [...]
↧