Skip to content

Instantly share code, notes, and snippets.

@tsi
Created February 21, 2016 09:00
Show Gist options
  • Save tsi/0bd1d26c020d49a79b46 to your computer and use it in GitHub Desktop.
Save tsi/0bd1d26c020d49a79b46 to your computer and use it in GitHub Desktop.
// ----------------------------------------------
// Image Replacement
// ----------------------------------------------
@mixin ir($img, $width: image-width($img), $height: image-height($img), $x: 50%, $y: 50%) {
background: {
image: image-url($img);
repeat: no-repeat;
position: $x $y;
};
width: $width;
height: $height;
text-indent: $width;
overflow: hidden;
white-space: nowrap;
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment