Skip to content

Instantly share code, notes, and snippets.

@kingdomofs
Created August 17, 2015 16:45
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 kingdomofs/fe28e0de4f616b3a2c02 to your computer and use it in GitHub Desktop.
Save kingdomofs/fe28e0de4f616b3a2c02 to your computer and use it in GitHub Desktop.
Tables in Magnet
<table align="center" class="magnet-table">
<tr>
<th>Serial no</th>
<th>First Name</th>
<th>Last Name</th>
<th>Points</th>
<th>Something</th>
</tr>
<tr>
<td>#1</td>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
<td>Something</td>
</tr>
<tr>
<td>#2</td>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
<td>Something</td>
</tr>
<tr>
<td>#3</td>
<td>John</td>
<td>Doe</td>
<td>80</td>
<td>Something</td>
</tr>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment