Skip to content

Instantly share code, notes, and snippets.

@ricardodantas
Forked from anonymous/mycode.js
Last active August 29, 2015 13:56
Show Gist options
  • Save ricardodantas/9052172 to your computer and use it in GitHub Desktop.
Save ricardodantas/9052172 to your computer and use it in GitHub Desktop.
A hide text SCSS mixin.
// How to use: @include hide-text;
@mixin hide-text() {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment