1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-06 23:44:15 -04:00
notes/docs/ui-components/tables.md

30 lines
823 B
Markdown
Raw Normal View History

2017-03-24 09:47:37 -04:00
---
layout: default
title: Tables
parent: UI Components
2017-03-26 21:09:19 -04:00
nav_order: 4
2017-03-24 09:47:37 -04:00
---
# Tables
Tables are responsive by default, allowing wide tables to have a horizontal scroll to access columns outside of the normal viewport.
<div class="code-example" markdown="1">
| head1 | head two | three |
|:-------------|:------------------|:------|
| ok | good swedish fish | nice |
| out of stock | good and plenty | nice |
| ok | good `oreos` | hmm |
| ok | good `zoute` drop | yumm |
</div>
```markdown
| head1 | head two | three |
|:-------------|:------------------|:------|
| ok | good swedish fish | nice |
| out of stock | good and plenty | nice |
| ok | good `oreos` | hmm |
| ok | good `zoute` drop | yumm |
```