col align

by Derk-Jan Hartman

HTML

<table>
  <colgroup>
    <col style="background-color:red">
    <col style="background-color:yellow">
    <col style="background-color:blue; text-align: right;">
  </colgroup>
  <tr>
    <th>First</th>
    <th>Second</th>
    <th>Third</th>
  </tr>
  <tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
  </tr>
</table>

CSS

th,td {
  min-width: 10em;
}
th {
  text-align: left;
}
td {
  text-align: right;
}