Skip to content

Instantly share code, notes, and snippets.

@Klerith
Created March 23, 2015 14:15
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 Klerith/2f95e424a31c5725dbdf to your computer and use it in GitHub Desktop.
Save Klerith/2f95e424a31c5725dbdf to your computer and use it in GitHub Desktop.
HTML: Datatable structure
<table class="display table table-bordered table-striped" id="tblDatos">
<thead>
<tr>
<th>Rendering engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th class="hidden-phone">Engine version</th>
<th class="hidden-phone">CSS grade</th>
</tr>
</thead>
<tbody>
<tr class="gradeX">
<td>Trident</td>
<td>Internet
Explorer 4.0</td>
<td>Win 95+</td>
<td class="center hidden-phone">4</td>
<td class="center hidden-phone">X</td>
</tr>
<tr class="gradeC">
<td>Trident</td>
<td>Internet
Explorer 5.0</td>
<td>Win 95+</td>
<td class="center hidden-phone">5</td>
<td class="center hidden-phone">C</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>Rendering engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th class="hidden-phone">Engine version</th>
<th class="hidden-phone">CSS grade</th>
</tr>
</tfoot>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment