Skip to content

Instantly share code, notes, and snippets.

@yankeyhotel
Last active August 29, 2015 14:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yankeyhotel/a96e5ef7bb83af8bb670 to your computer and use it in GitHub Desktop.
Save yankeyhotel/a96e5ef7bb83af8bb670 to your computer and use it in GitHub Desktop.
Background Cover Less Mixin
.background-cover(@url, @position) {
background-image: url(@url);
background-position: center @position;
-moz-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
}
// How to use
div {
.background("../img/image.jpg", center);
}
// Output
div {
background-image: url("../img/image.jpg");
background-position: center center;
-moz-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment