Skip to content

Instantly share code, notes, and snippets.

@liximomo
Created September 17, 2018 08:52
Show Gist options
  • Save liximomo/62b98e96c6964b30ac58f5edf7f1f86b to your computer and use it in GitHub Desktop.
Save liximomo/62b98e96c6964b30ac58f5edf7f1f86b to your computer and use it in GitHub Desktop.
Hide element but remain available to assistive technology.
.AccessibleOnly {
clip: rect(1px 1px 1px 1px); /* IE 6/7 */
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap; /* added line */
width: 1px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment