Skip to content

Instantly share code, notes, and snippets.

@imlinus
Last active December 26, 2015 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imlinus/7198783 to your computer and use it in GitHub Desktop.
Save imlinus/7198783 to your computer and use it in GitHub Desktop.
ir (hide-text) mixin/placeholder
@mixin ir {
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
%ir {
@include ir;
}
// usage
.logotype {
width: 100px;
height: 50px;
background-image: url('path/to/image.png');
h1 { @extend %ir; }
}
<div class="logotype">
<h1>Company name</h1>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment