👀 Live Preview
Inline side comment with smaller typography:
Price shown is approximate (taxes may apply).

The <small> tag marks side comments, fine print, and ancillary text. This guide covers syntax, global attributes, disclaimers, footnotes, accessibility, and when to use CSS instead.
Disclaimers.
Secondary text.
Inline element.
class & style.
With sup.
Stay readable.
<small> Tag?The <small> tag is an inline HTML element that represents side comments and fine print — text that is typically rendered smaller than the surrounding content. Browsers apply a smaller font size by default.
Use small for disclaimers, copyright, legal notes, and annotations — not merely to shrink text for decoration. For visual sizing alone, prefer CSS font-size.
Common uses include footer disclaimers, terms-of-service notes, and footnote markers in articles.
Wrap the ancillary text within opening and closing small tags:
<small>Your small text here</small><p>
Price shown is approximate
<small>(taxes may apply)</small>.
</p>small is phrasing content — use inside block elements like p, footer, or figcaption.small.sup for superscript footnote markers when needed.| Topic | Code Snippet | Notes |
|---|---|---|
| Basic small | <small>...</small> | Fine print |
| Copyright | © 2026 Company | In footer |
| Footnote marker | <sup><small>[1]</small></sup> | Annotations |
| Styling | class="fineprint" | Global attr |
| vs CSS only | font-size in CSS | Visual only |
| Browser support | Universal | All browsers |
<small> vs CSS font-size| Approach | Purpose | When to use |
|---|---|---|
<small> | Semantic fine print / side comment | Disclaimers, copyright, legal notes |
CSS font-size | Visual presentation only | Design tweaks without semantic meaning |
Obsolete <big> | Larger text (removed) | Do not use — use CSS instead |
The <small> tag has no tag-specific attributes. Use standard global attributes like class and style for styling and customization.
<small class="highlight" style="color: #666;">Custom styled small text</small>class / id GlobalHook for CSS classes targeting fine print or footer disclaimers.
class="fineprint"style GlobalInline color, font-size, or spacing adjustments.
style="color: #666;"lang OptionalDeclare language when disclaimer text differs from the page language.
lang="fr"title OptionalExtra tooltip context for abbreviated legal or technical notes.
title="Terms apply"Fine print, disclaimers, and footnote markers with copy-ready code and live previews.
Inline side comment with smaller typography:
Price shown is approximate (taxes may apply).
Use <small> for fine print, legal disclaimers, copyright notices, and footnote markers.
The small tag is often employed to display fine print or legal disclaimers at the bottom of a page:
<small>
© 2026 Your Company. All rights reserved.
This is a disclaimer text for informational purposes.
</small>In academic or article-based content, the small tag can be utilized for footnotes or annotations inside sup:
<p>
In his groundbreaking research<sup><small>[1]</small></sup>,
the scientist made significant discoveries.
</p>small text below ~12px equivalent; users must be able to read disclaimers.small for genuinely ancillary content, not to de-emphasize required information unfairly.Disclaimers, copyright, or notes are wrapped in small.
User-agent styles reduce font size for small content.
Use class or style for color, spacing, or layout.
Secondary text is de-emphasized without losing semantic meaning.
The <small> tag is supported in all major browsers, including Internet Explorer.
All browsers render <small> with reduced typography by default.
Bottom line: Use <small> confidently for fine print in any browser.
Mastering the <small> tag helps you present side comments and fine print with clear semantic meaning. Use it judiciously to enhance readability and aesthetics without sacrificing accessibility.
small for disclaimers, copyright, and side commentssmall only for decorative font shrinkingfont-size when meaning mattersbig for larger text<small>Bookmark these before you add fine print to your pages.
Side comments.
PurposeFooter notes.
Use caseWith sup.
PatternCustomize.
AttributesStay legible.
A11yAll browsers.
Compatibilitysmall when the content is semantically secondary. Use CSS font-size for visual tweaks.class, id, and style.[1] in <sup><small>[1]</small></sup>.Practice <small> for disclaimers, copyright, and footnotes in the Try It editor.
6 people found this page helpful