Skip to content

Instantly share code, notes, and snippets.

@ClydeDz
Created March 19, 2020 10:19
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 ClydeDz/7df2de9d744815dacef18de716203f17 to your computer and use it in GitHub Desktop.
Save ClydeDz/7df2de9d744815dacef18de716203f17 to your computer and use it in GitHub Desktop.
Table example with only tbody - Medium article
<table border="1">
<tbody>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
</tr>
<tr>
<td>Lorem ipsum 1</td>
<td>Lorem ipsum 2</td>
</tr>
<tr>
<td>Lorem ipsum 3</td>
<td>Lorem ipsum 4</td>
</tr>
<tr>
<td>Lorem ipsum 5</td>
<td>Lorem ipsum 6</td>
</tr>
<tr>
<td>Lorem ipsum 7</td>
<td>Lorem ipsum 8</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment