Tables¶
Grid Tables¶
+---------------------+----------+
| Header 1 | Header 2 |
+==========+==========+==========+
| cell 1 | cell 2 | cell 3 |
+----------+ +----------+
| cell 4 | | cell 6 |
+----------+----------+----------+
Header 1 |
Header 2 |
|
---|---|---|
cell 1 |
cell 2 |
cell 3 |
cell 4 |
cell 6 |
Sortable Tables¶
Use a div
element with the class table-sortable
to make a table sortable.
/// html | div.table-sortable
| Name | Age | Country |
|------|-----|---------|
| John | 27 | USA |
| Jane | 23 | Canada |
| Doe | 45 | UK |
///
Name | Age | Country |
---|---|---|
John | 27 | USA |
Jane | 23 | Canada |
Doe | 45 | UK |