CSS Tables: Horizontal Alignment

//the following example left-aligns the text in <th> elements

th {
  text-align: left;
}

The text-align property sets the horizontal alignment (like left, right, or center) of the content in <th> or <td>.

By default, the content of &lt;th&gt; elements are center-aligned and the content of &lt;td&gt; elements are left-aligned.

CSS Tables: Horizontal Alignment — Structure map

Clickable & Draggable!

CSS Tables: Horizontal Alignment — Related pages: