Skip to content

Instantly share code, notes, and snippets.

@jaoltr
Created December 27, 2022 10:54
Show Gist options
  • Save jaoltr/d3480abd846451e8c24487261318a0d3 to your computer and use it in GitHub Desktop.
Save jaoltr/d3480abd846451e8c24487261318a0d3 to your computer and use it in GitHub Desktop.
CSS to visually hide elements while still accessible to screen readers
.noShow {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/* https://www.w3.org/WAI/tutorials/forms/labels/ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment