Skip to content

Instantly share code, notes, and snippets.

@oraricha
Created December 9, 2013 16:28
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 oraricha/7875175 to your computer and use it in GitHub Desktop.
Save oraricha/7875175 to your computer and use it in GitHub Desktop.
*printable* image replacement Sass mixin
// *printable* image replacement
@mixin printable-image-replacement($imageUrl) {
display: list-item;
list-style-image: url($imageUrl);
list-style-position: inside;
letter-spacing: -1000em;
font-size: 1pt;
color: #fff;
height: image-height($imageUrl);
width: image-width($imageUrl);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment