Table Styles

I do not provide many table styles because I rarely use tables.

Generic


<table>
  <tr>
    <td>Row 1, Cell 1</td>
    <td>Row 1, Cell 2</td>
  </tr>
  <tr>
    <td>Row 2, Cell 1</td>
    <td>Row 2, Cell 2</td>
  </tr>
</table>
        
Row 1, Cell 1 Row 1, Cell 2
Row 2, Cell 1 Row 2, Cell 2

Generic Class Style

A bordered table with no cell borders. Also, we're using the hilite style.


<table class="generic">
    <tr>
        <th></th>
        <th>Column 1</th>
        <th>Column 2</th>
    </tr>            
    <tr>
        <th>Row 1</th>
        <td>Row 1, Cell 1</td>
        <td>Row 1, Cell 2</td>
    </tr>
    <tr class="hilite">
        <th>Row 2</th>
        <td>Row 2, Cell 1</td>
        <td>Row 2, Cell 2</td>
    </tr>
</table>
        
Column 1 Column 2
Row 1 Row 1, Cell 1 Row 1, Cell 2
Row 2 Row 2, Cell 1 Row 2, Cell 2