Tables
A table is a way to organize data using rows and columns. Since data drives tables, it helps to present data clearly so it's easy to read and understand.
Live demo
Coming soon.
Anatomy
table
applies base Eureka CSS to your table.caption
if your table needs a description.thead
that contains the header rows of your table.tbody
containing the data in your table.tfoot
is optional. Use it if your totaling numerical data.tr
is used to insert rows into your table.th
is in thethead
and contains header text.td
is in thetbody
and contain tabular data..

Usage
Tables are typically used to present tabular data in a way that’s easy to read and is accessible to those with screen readers.
Do
- Use tables for tabular data.
- Use table headers, i.e., a
thead
tag followed by atr
tag and it's childth
tag. - Apply accessibility features.
- Keep it simple: Stick to clean, readable content with consistent alignment and spacing.
Don't
Developer notes
Tags, attributes, classes | Description |
---|---|
table |
|
thead |
|
tbody |
|
tfoot |
|
tr |
|
th |
|
td |
|
Accessibility
Element or property | Description |
---|---|
|
|
|
|
Changelog
Date | Version | Affects | Notes |
---|---|---|---|
MM/DD/YYYY | 0.0.0.0 | Something | This is the first release. |