Guest User

Untitled

a guest
Oct 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // A SCSS/compass mixin for fluid images
  2. // ex: @include fluid-image(30%);
  3.  
  4. @mixin fluid-image($width) {
  5. background-position: center;
  6. background-repeat: no-repeat;
  7. display: block;
  8. padding-bottom: $width;
  9. margin-bottom: -$width;
  10. width: $width;
  11. }
Add Comment
Please, Sign In to add comment