Theme:
Table
Tables display structured data in rows and columns. They support zebra striping, row hover, compact mode, and bordered variants.
Basic Table
| Name | Role | |
|---|---|---|
| Sarah Johnson | sarah@company.com | Designer |
| Michael Chen | michael@company.com | Developer |
| Emily Davis | emily@company.com | Manager |
<table class="dui-table">
<thead><tr><th>Name</th><th>Email</th><th>Role</th></tr></thead>
<tbody>
<tr><td>Sarah Johnson</td><td>sarah@company.com</td><td>Designer</td></tr>
</tbody>
</table>
Zebra Striping
| Product | Price | Stock |
|---|---|---|
| Wireless Mouse | $29.99 | 142 |
| Mechanical Keyboard | $89.99 | 68 |
| USB-C Hub | $39.99 | 215 |
| Monitor Stand | $49.99 | 93 |
<table class="dui-table dui-table-zebra">...</table>
Hover Rows
| Name | Status |
|---|---|
| Deployment v2.1 | Active |
| Deployment v2.0 | Archived |
| Deployment v1.9 | Archived |
<table class="dui-table dui-table-hover">...</table>
Compact
| ID | Name | |
|---|---|---|
| 001 | Alice Nguyen | alice@example.com |
| 002 | Bob Martinez | bob@example.com |
| 003 | Carol White | carol@example.com |
<table class="dui-table dui-table-compact">...</table>
Bordered
| Feature | Free | Pro |
|---|---|---|
| Storage | 5 GB | 100 GB |
| Users | 1 | Unlimited |
| Support | Priority |
<table class="dui-table dui-table-bordered">...</table>