Created
January 25, 2017 19:16
-
-
Save ayezee33/204a40e07ad3a2ad1fe42099f6952609 to your computer and use it in GitHub Desktop.
Modest CSS Tables & Lists
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 class="u-full-width"> | |
<thead> | |
<tr> | |
<th>User ID</th> | |
<th>Name</th> | |
<th>Email</th> | |
<th>Twitter</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>001</td> | |
<td>John D</td> | |
<td>[email protected]</td> | |
<td>@john</td> | |
</tr> | |
<tr> | |
<td>002</td> | |
<td>Steve J</td> | |
<td>[email protected]</td> | |
<td>@steve</td> | |
</tr> | |
</tbody> | |
</table> | |
<ul> | |
<li>Appples</li> | |
<li>Oranges</li> | |
<li>Blueberries</li> | |
<ul> | |
<li>Organic</li> | |
</ul> | |
<li>Strawberries</li> | |
</ul> | |
<ol> | |
<li>First Item</li> | |
<li>Second Item</li> | |
<li>Third Item</li> | |
<ol> | |
<li>Optional Item</li> | |
</ol> | |
<li>Fourth Item</li> | |
</ol> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment