Skip to content

Instantly share code, notes, and snippets.

@SteAllan
Last active December 17, 2015 14:39
Show Gist options
  • Select an option

  • Save SteAllan/5625811 to your computer and use it in GitHub Desktop.

Select an option

Save SteAllan/5625811 to your computer and use it in GitHub Desktop.
Hide elements from screen readers and/or everyone else.
// Hide elements from visual users but not from screen readers
.visually-hidden,
%visually-hidden {
position: absolute !important;
clip: rect(1px, 1px, 1px, 1px);
padding:0 !important;
border:0 !important;
height: 1px !important;
width: 1px !important;
overflow: hidden;
@if $ltie9 == true {
clip: rect(1px 1px 1px 1px); // IE6, IE7 (deprecated syntax)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment