Last active
October 30, 2018 22:01
-
-
Save freejoe76/79570f5e4a67e9b482ed6983612aca84 to your computer and use it in GitHub Desktop.
Semantic, accessible markup examples. More about table accessibility: https://webaim.org/techniques/tables/data
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<caption>Country populations, 2018</caption> | |
<thead> | |
<tr> | |
<th scope="col" abbr="">Country</th> | |
<th scope="col" abbr="">Population</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<th scope="row">France</th> | |
<td>1000000</td> | |
</tr> | |
</tbody> | |
</table> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment