Skip to content

Instantly share code, notes, and snippets.

@jonwinton
Created April 4, 2016 23:41
Show Gist options
  • Select an option

  • Save jonwinton/3f56eb67158898b6bee6d162df33b1cb to your computer and use it in GitHub Desktop.

Select an option

Save jonwinton/3f56eb67158898b6bee6d162df33b1cb to your computer and use it in GitHub Desktop.
A mixin for visually hiding content in an accessible way
@mixin isVisuallyHidden() {
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: 0;
position: absolute;
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