Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Last active December 22, 2015 23:59
Show Gist options
  • Save pixelchar/6550338 to your computer and use it in GitHub Desktop.
Save pixelchar/6550338 to your computer and use it in GitHub Desktop.
Visually hide content in a way that is safe for screen readers
.visually-hidden {
position: absolute;
width: 1px; /* Setting this to 0 makes it invisible for VoiceOver */
height: 1px; /* Setting this to 0 makes it invisible for VoiceOver */
padding: 0;
margin: -1px;
border: 0;
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