Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Last active June 12, 2016 11:59
Show Gist options
  • Save snowman-repos/3838113 to your computer and use it in GitHub Desktop.
Save snowman-repos/3838113 to your computer and use it in GitHub Desktop.
SASS: Accessible Hidden Text
// Accessible hiding
@mixin screen-reader-text() {
position: absolute;
top: -9999px;
left: -9999px;
}
.screen-reader-text {
@include screen-reader-text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment