Skip to content

Instantly share code, notes, and snippets.

@andrewhavens
Created January 6, 2012 23:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrewhavens/1573056 to your computer and use it in GitHub Desktop.
Save andrewhavens/1573056 to your computer and use it in GitHub Desktop.
Table with row groups
<table class="tablesorter">
<thead>
<tr>
<th>name</th>
</tr>
</thead>
<tbody>
<!-- group 1 -->
<tr class="top">
<td>Andrew</td>
</tr>
<tr class="bottom">
<td></td>
</tr>
<!-- group 2 -->
<tr class="top">
<td>Bob</td>
</tr>
<tr class="bottom">
<td></td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment