small element

Use small for secondary information such as copyright notices, disclaimers, or short notes that support the main content.

What you will learn

What does small mean?

small marks side comments and fine print that are less central than the surrounding content. Browsers usually render it at a smaller relative size, but its main purpose is semantic: it identifies secondary information.

Copyright notice

<footer>
  <small>© 2025 Your Company. All rights reserved.</small>
</footer>

Common uses

Disclaimer and form hint

<p>This service is in beta.
  <small>Details may change without notice.</small>
</p>

<label>
  Email
  <input type="email" required>
  <small>Example: [email protected]</small>
</label>

small or CSS?

Use CSS font-size when the goal is purely visual. Use small when the text is genuinely secondary information. Do not use it to make ordinary body text too tiny or to hide keywords.

Readable fine print

small {
  font-size: clamp(.8rem, .8em, .9rem);
  line-height: 1.45;
}

Related pages