Skip to content

<small> - The Small Text Element

Inline HTML 3.2

The small text element represents side comments and small print, such as copyright notices, legal restrictions, or disclaimers. It’s typically rendered in a smaller font size.

Result
<small>fine print or side comment</small>

The <small> element represents content that is less important or supplementary to the main content.

Result
Result
Result
Result
Result
Result
Result
Result
Result
Result
<!-- Don't use <small> just to make text smaller -->
<p><small>This is my main content</small></p>
<h1>Main Title <small>Subtitle</small></h1>
<small>
This is a long paragraph of important content
that should not be in a small element...
</small>

Customize small text appearance:

Result

You can nest <small> for even smaller text:

Result
Result
Result
Result

Screen readers read <small> content normally. The smaller size is visual only and doesn’t affect semantic importance.

Don’t make text so small it becomes hard to read:

/* Avoid */
small {
font-size: 0.5em; /* Too small! */
}
/* Better */
small {
font-size: 0.875em; /* Readable */
}

If information is important, don’t hide it in small print:

<small>Important safety warning: ...</small>
Result
Result
BrowserVersionNotes
Chrome1+Full support
Firefox1+Full support
Safari1+Full support
Edge12+Full support
IE3+Full support

The <small> element has been supported since the earliest browsers.