Wrap definition items in a definition list
Description terms (<dt>) and details (<dd>) must be contained within a <dl> element.
- Place all <dt> (terms) and <dd> (descriptions) within a <dl>
- Avoid using description list items as standalone elements
- Ensure proper grouping of related metadata or glossary terms
Rule Details
The <dt> (description term) and <dd> (description details) elements are only semantically valid when used as children of a <dl> (description list).
Code Example
<!-- ✅ Good: Properly wrapped -->
<dl>
<dt>Term</dt>
<dd>The definition of the term.</dd>
</dl>
<!-- ❌ Bad: Orphaned elements -->
<dt>Orphaned Term</dt>
<dd>This is not inside a list.</dd>
<!-- ❌ Bad: Using other containers incorrectly -->
<ul>
<li>
<dt>Invalid usage</dt> <!-- dt cannot be a child of li or ul -->
</li>
</ul>Why It Matters
- Relationship Mapping: Browsers use the
<dl>container to associate specific terms with their corresponding descriptions. - Accessibility Tree: Assistive technologies expose these elements as a "list" only when wrapped correctly, allowing users to navigate by list items.
- Validation: Improperly nested elements will fail HTML validation, which can lead to unpredictable rendering issues.
Best Practices
✅ Always use <dl>: Never use <dt> or <dd> on their own for styling purposes.
✅ Logical Order: Typically, <dt> comes before its associated <dd>.
✅ Multiple Details: It is perfectly valid to have one <dt> followed by multiple <dd> elements for a single term.
Tools & Validation
Exceptions
- Simple data tables can sometimes fail more from missing header relationships than from missing enhancements such as captions or mobile wrappers, so prioritize the strongest semantic issue.
- Do not convert layout structures into data-table markup just to satisfy a rule; the correct fix may be to remove table semantics entirely.
- When several table-accessibility issues overlap, resolve the header-cell relationship first because downstream announcements depend on it.
Standards
- Align the implementation with W3C WAI: WCAG Overview and verify the rendered experience, not only the source code.
- Align the implementation with MDN: Accessibility and verify the rendered experience, not only the source code.
Verification
Automated Checks
- Inspect the browser accessibility tree or accessibility pane for the relevant element, role, or accessible name.
- Run an automated accessibility checker such as axe or Lighthouse where applicable.
Manual Checks
- Test the affected UI with keyboard-only navigation and confirm the rule holds in the rendered experience.
- Re-test one representative user flow with a screen reader if this rule affects a key interaction.
Use with AI
Copy these prompts to use with your AI assistant, or install the MCP server to use directly from Claude, Cursor, or Windsurf.
Check
Verify implementation
Locate any <dt> or <dd> elements that are not children of a <dl> element.
Fix
Auto-fix issues
Wrap orphaned <dt> and <dd> elements in a parent <dl> container.
Explain
Learn more
Explain why <dt> and <dd> must be contained within a <dl> for correct semantic association.
Review
Code review
Review the rendered markup and interactive states that affect Wrap definition items in a definition list. Flag exact elements, roles, labels, focus behavior, or keyboard interactions that violate the rule, and note how to verify the fix with browser accessibility tooling or assistive tech.