Data list
A compact key/value layout for object properties.
Use .data-list to present the properties of a single object as simple
term–value pairs on a <dl>. It expects alternating <dt> and <dd> children
— one term, one value per property. Use a plain description list for
relationships that involve multiple terms or descriptions, and a <table> to
compare the same property across several objects.
- Name
- Alice Martin
- alice@example.com
- Role
- Administrator
<dl class="data-list">
<dt>Name</dt>
<dd>Alice Martin</dd>
<dt>Email</dt>
<dd>alice@example.com</dd>
<dt>Role</dt>
<dd>Administrator</dd>
</dl>
Rich values
Values accept inline content such as badges, links, dates, or a .cluster of
related items. Terms and values remain baseline-aligned.
- Status
- Active
- Plan
- Professional
- Renewal
<dl class="data-list">
<dt>Status</dt>
<dd><span class="badge success">Active</span></dd>
<dt>Plan</dt>
<dd>Professional</dd>
<dt>Renewal</dt>
<dd><time datetime="2026-09-14">14 Sep 2026</time></dd>
</dl>
In a card
.data-list composes with .card and other layout primitives for business
metadata.
Storage details
- Used
- 6.7 GB
- Available
- 1.3 GB
- Files
- 12,492
<article class="card stack">
<h3>Storage details</h3>
<dl class="data-list">
<dt>Used</dt>
<dd>6.7 GB</dd>
<dt>Available</dt>
<dd>1.3 GB</dd>
<dt>Files</dt>
<dd>12,492</dd>
</dl>
</article>
Contract
.data-list styles one <dt> followed by one <dd> per property. A valid
<dl> may group several terms with one description or the reverse, but that
markup does not belong in .data-list — use a plain description list instead,
where .prose already covers the editorial cases.
Use .data-list for the properties of a single object. Use a <table> when
comparing the same properties across multiple objects.