Skip to content

Instantly share code, notes, and snippets.

@Serrin
Forked from luxplanjay/visually-hidden.css
Last active May 15, 2021 17:13
Show Gist options
  • Save Serrin/54ee8752aed5124b822da57bfef09740 to your computer and use it in GitHub Desktop.
Save Serrin/54ee8752aed5124b822da57bfef09740 to your computer and use it in GitHub Desktop.
Visually hidden CSS pattern
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
border: 0;
padding: 0;
outline: 0;
outline-offset: 0;
white-space: nowrap;
clip-path: inset(100%);
clip: rect(0 0 0 0);
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment