CSS Portal

HTML <small> Tag

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!

Description

The <small> HTML element is used to represent side-comments, disclaimers, or fine print within a document. Its primary purpose is to indicate that the content it encloses is of lesser importance or is supplementary to the surrounding content. This does not mean it should be used purely for styling purposes - semantic meaning is key. Typically, text within a <small> tag is rendered in a smaller font size compared to the surrounding text, but the exact appearance is determined by the browser's default stylesheet or any CSS applied by the developer.

Common use cases include:

  • Legal disclaimers, copyright notices, or terms and conditions.
  • Secondary or auxiliary information that supports the main content without drawing attention.
  • References, annotations, or footnotes within articles or documents.
  • Contextual notes in forms, tables, or interfaces to clarify data without interrupting the main flow.

It is important to note that <small> is semantic, not purely presentational. While it often results in smaller text, the true value of this tag lies in conveying to both users and assistive technologies that the information is minor or less prominent. This can enhance accessibility, as screen readers may treat the content differently, providing a clearer reading hierarchy.

Example usage:

<p>
  All products come with a one-year warranty. 
  <small>Terms and conditions apply.</small>
</p>

In this example, the main message about the warranty is highlighted, while the disclaimer is de-emphasized using <small>.

Properties

Permitted Parents
Any element that accepts phrasing content, or any element that accepts flow content
Content
Inline and text
Start/End Tags
Start tag: required, End tag: required

Example

The small tag will make the following text <small>smaller</small>

Attributes

None

Global Attributes

The <small> tag also supports the Global Attributes in HTML5

Event Attributes

The <small> tag also supports the Event Attributes in HTML5

Browser Support

The following information will show you the current browser support for the HTML <small> tag. Hover over a browser icon to see the version that first introduced support for this HTML tag.

This tag is supported by all modern browsers.
Desktop
Chrome
Edge
Firefox
Opera
Safari
Tablets & Mobile
Chrome Android
Firefox Android
Opera Android
Safari iOS
Samsung Internet
Android WebView
-

Last updated by CSSPortal on: 26th December 2025

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!