Skip to content

Instantly share code, notes, and snippets.

@naveensky
Created May 7, 2015 10:42
Show Gist options
  • Save naveensky/a23682e0780fad896609 to your computer and use it in GitHub Desktop.
Save naveensky/a23682e0780fad896609 to your computer and use it in GitHub Desktop.
Format for HTML Table
<table class="table table-data-cms">
<thead>
<tr>
<th>Column Heading 1</th>
<th>Column Heading 2</th>
<th>Column Heading 3</th>
<th>Column Heading 4</th>
</tr>
</thead>
<tbody>
<tr>
<td>Prop 1</td>
<td>Prop 2</td>
<td>Prop 3</td>
<td>Prop 4</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment