Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Created July 15, 2013 17:28
Show Gist options
  • Save jlittlejohn/6001772 to your computer and use it in GitHub Desktop.
Save jlittlejohn/6001772 to your computer and use it in GitHub Desktop.
SCSS: Background Size (Mixin)
@mixin background-size($background-size) {
-webkit-background-size: $background-size;
-moz-background-size: $background-size;
-o-background-size: $background-size;
background-size: $background-size;
}
@Code-Stars
Copy link

Very nice bro.

@efatsi
Copy link

efatsi commented May 20, 2020

aint that the truth

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment