CSS Tables: Vertical Alignment

<pre><code>//the following example sets the vertical text alignment to bottom for &lt;td&gt; elements

td {
  height: 50px;
  vertical-align: bottom;
}</code></pre>

The vertical-align property sets the vertical alignment (like top, bottom, or middle) of the content in <th> or <td>.

By default, the vertical alignment of the content in a table is middle (for both <th> and <td> elements).

CSS Tables: Vertical Alignment — Structure map

Clickable & Draggable!

CSS Tables: Vertical Alignment — Related pages: