Skip to main content
Beta: Front-End Checklist is currently in beta. Some issues are still being fixed. Thanks for your patience.

Wrap definition items in a definition list

Description terms (<dt>) and details (<dd>) must be contained within a <dl> element.

Utilities
Quick take
Typical fix time 5 min
  • 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
Why it matters: Standalone <dt> or <dd> elements lose their semantic meaning and fail to provide the context needed for assistive technologies to link terms with definitions.

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 -->
&lt;dl&gt;
  &lt;dt&gt;Term</dt>
  &lt;dd&gt;The definition of the term.</dd>
</dl>
 
<!-- ❌ Bad: Orphaned elements -->
&lt;dt&gt;Orphaned Term</dt>
&lt;dd&gt;This is not inside a list.</dd>
 
<!-- ❌ Bad: Using other containers incorrectly -->
<ul>
  <li>
    &lt;dt&gt;Invalid usage</dt> <!-- dt cannot be a child of li or ul -->
  </li>
</ul>

Why It Matters

  • Relationship Mapping: Browsers use the &lt;dl&gt; 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 &lt;dt&gt; or &lt;dd&gt; on their own for styling purposes. ✅ Logical Order: Typically, &lt;dt&gt; comes before its associated &lt;dd&gt;. ✅ Multiple Details: It is perfectly valid to have one &lt;dt&gt; followed by multiple &lt;dd&gt; 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 &lt;dt&gt; or &lt;dd&gt; elements that are not children of a &lt;dl&gt; element.

Fix

Auto-fix issues

Wrap orphaned &lt;dt&gt; and &lt;dd&gt; elements in a parent &lt;dl&gt; container.

Explain

Learn more

Explain why &lt;dt&gt; and &lt;dd&gt; must be contained within a &lt;dl&gt; 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.

Sources

References used to support the guidance in this rule.

Further Reading

Tools and supplementary material for exploring the topic in more depth.

axe DevTools
deque.comTool

Rules that often go hand-in-hand with this one.

Use correct definition list structure

Definition lists (&lt;dl&gt;) must only contain valid &lt;dt&gt; and &lt;dd&gt; elements.

Accessibility
Place list items within list containers

List item elements (li) must always be direct children of a list container (ul, ol, or menu) to maintain valid HTML structure and correct screen reader announcements.

Accessibility
Use correct list structure

Lists (ul, ol) should only contain list item elements (li) to ensure they are correctly interpreted by assistive technology.

Accessibility
Use semantic list elements

Groups of related items use ul, ol, or dl elements so screen readers announce list context and item count.

Accessibility

Was this rule helpful?

Your feedback helps improve rule quality. This stays internal for now.

Loading feedback...
0 / 385