Accessibility

Screen Readers

Utilities for improving accessibility with screen readers.

Quick reference

Class
Properties
sr-onlyposition: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
not-sr-onlyposition: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal;

Basic usage

Screen-reader-only elements

Use sr-only to hide an element visually without hiding it from screen readers:

  1. <a href="#">
  2. <svg><!-- ... --></svg>
  3. <span class="sr-only">Settings</span>
  4. </a>

Undoing screen-reader-only elements

Use not-sr-only to undo sr-only, making an element visible to sighted users as well as screen readers. This can be useful when you want to visually hide something on small screens but show it on larger screens for example:

  1. <a href="#">
  2. <svg><!-- ... --></svg>
  3. <span class="sr-only sm:not-sr-only">Settings</span>
  4. </a>

Applying conditionally

Hover, focus, and other states

Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use focus:not-sr-only to only apply the not-sr-only utility on focus.

  1. <a href="#content" class="sr-only focus:not-sr-only">
  2. Skip to content
  3. </a>

For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.

Breakpoints and media queries

You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:not-sr-only to apply the not-sr-only utility at only medium screen sizes and above.

  1. <div class="sr-only md:not-sr-only">
  2. <!-- ... -->
  3. </div>

To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.