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

Use correct definition list structure

Definition lists (<dl>) must only contain valid <dt> and <dd> elements.

Utilities
Quick take
Typical fix time 5 min
  • Ensure &lt;dl&gt; contains only &lt;dt&gt;, &lt;dd&gt;, or <script>/<template> tags
  • Avoid wrapping list items in invalid container elements like <div>
  • Maintain semantic relationships between terms and descriptions
Why it matters: Broken list structures confuse assistive technologies, preventing users from understanding the relationship between terms and their definitions.

Rule Details

A definition list (&lt;dl&gt;) is used to group terms (&lt;dt&gt;) and their descriptions (&lt;dd&gt;). Using the correct structure ensures that assistive technologies can correctly parse and announce these relationships.

Code Example

<!-- ✅ Good structure -->
&lt;dl&gt;
  &lt;dt&gt;HTML</dt>
  &lt;dd&gt;HyperText Markup Language</dd>
  &lt;dt&gt;CSS</dt>
  &lt;dd&gt;Cascading Style Sheets</dd>
</dl>
 
<!-- ✅ Good structure (using div for styling, valid in HTML5) -->
&lt;dl&gt;
  <div class="row">
    &lt;dt&gt;Author</dt>
    &lt;dd&gt;Jane Doe</dd>
  </div>
</dl>
 
<!-- ❌ Bad structure: Direct children that aren't dt, dd, or div -->
&lt;dl&gt;
  <h3>Book Metadata</h3> <!-- Headings should be outside the dl -->
  <p>Some introductory text</p> <!-- Paragraphs should be outside -->
  &lt;dt&gt;Year</dt>
  &lt;dd&gt;2023</dd>
</dl>

Why It Matters

  • Semantic Accuracy: Correct nesting allows browsers to understand the document structure.
  • Screen Reader Navigation: Some screen readers provide shortcuts to jump between items in a list; invalid markup breaks this.
  • Grouping: Proper structure ensures that multiple definitions for a single term are correctly grouped.

Best Practices

Keep it simple: Only put terms and definitions inside the list. ✅ Use DIVs for styling only: Wrap dt/dd pairs in a div if you need a container for CSS layout (Grid/Flexbox). ✅ Check for Orphaned Items: Ensure every dt has at least one associated dd.

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

Verify that all &lt;dl&gt; elements contain only valid child elements (dt, dd, or allowed wrappers).

Fix

Auto-fix issues

Remove any invalid elements from within the &lt;dl&gt; or wrap them appropriately to maintain semantic integrity.

Explain

Learn more

Explain how proper definition list structure helps screen readers navigate and group related information.

Review

Code review

Review the rendered markup and interactive states that affect Use correct definition list structure. 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 list structure

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

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
Wrap definition items in a definition list

Description terms (&lt;dt&gt;) and details (&lt;dd&gt;) must be contained within a &lt;dl&gt; element.

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