Vertical Alignment of text in a table cell

td.description {vertical-align: top;}

where description is the class name of the td with that text in it

td.description {
  vertical-align: top;
}
<td class="description">Description</td>

OR inline (yuk!)

<td style="vertical-align: top;">Description</td>

Leave a Comment