Skip to content

Instantly share code, notes, and snippets.

@amberhinds
Last active March 21, 2023 04: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 amberhinds/54e22ae0875bf4b8b42bab140e1e0dac to your computer and use it in GitHub Desktop.
Save amberhinds/54e22ae0875bf4b8b42bab140e1e0dac to your computer and use it in GitHub Desktop.
HTML Table with row and column scoped headers
<table>
<thead>
<tr>
<th scope="col">Video Creation & Editing Features</th>
<th scope="col">Free</th>
<th scope="col">Pro</th>
<th scope="col">Team</th>
<th scope="col">Enterprise</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Total Captures</th>
<td>Up to 25</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr>
<th scope="row">Recording Length</th>
<td>Up to 90 seconds</td>
<td>Unlimited</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment