Skip to main content

The <small> Element

As defined in the HTML Living Standard, the <small> element represents side comments and small print, like copyright and legal text, independent of its visual presentation.

Visual Example:

SimpleAccess Standard License

© 2026 SimpleAccess.io. All rights reserved. Terms and conditions apply.
<footer> <small>&copy; 2026 My Company</small> </footer> View HTML Living Standard: The small element

Meaning, Not Size

While browsers render the <small> tag at a smaller font size by default, its primary purpose is semantic. It indicates that the text is auxiliary "fine print."

WCAG Requirement: Contrast (Minimum)

Success Criterion 1.4.3 (Level AA): The visual presentation of text... has a contrast ratio of at least 4.5:1.

A common accessibility failure occurs when developers use <small> print and simultaneously lighten the text color (e.g., using light gray). Because the font size is already reduced, high contrast is even more critical for legibility. Always ensure your "fine print" remains readable for users with low vision.

Understand SC 1.4.3: Contrast

Styling Best Practices

Following SMACSS Module Rules, you should control the scaling of small text through relative units (like em or %).

A11y Tip: Info and Relationships

While <small> does not have a specific ARIA role, its presence in the DOM signals to search engines and some specialized assistive tools that the content is supplementary. This helps satisfy WCAG SC 1.3.1 by programmatically identifying the nature of the relationship between the main prose and the legal/side notes.