VERTICAL-ALIGN Property In CSS
vertical-align Property in CSS
vertical-align property Declares the vertical alignment of an inline-level element or a table cell.
Possible Value:
Lengths, percentages, and the following predefined values: baseline sub super top text-top middle bottom text-bottom
Examplespan { vertical-align:middle; }
td { vertical-align:top; }