Skip to content

Instantly share code, notes, and snippets.

@jemgold
Forked from daneden/gist:4032573
Created November 7, 2012 16:20
Show Gist options
  • Save jemgold/4032582 to your computer and use it in GitHub Desktop.
Save jemgold/4032582 to your computer and use it in GitHub Desktop.
Sass media queries and @extend
// Fairly safe way to visually hide content, but make it accessible to screen readers
.visually-hidden {
position: absolute;
left: -9999px;
height: 1px;
}
.mobile-offscreen {
@media screen and (max-width: 700px) {
@extend .visually-hidden;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment