Created
July 12, 2013 02:57
-
-
Save koycarraway/5981075 to your computer and use it in GitHub Desktop.
Sass Mixin for background-size: cover property. Includes IE support.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// $bg-img-path: '../path/to/image.jpg' | |
// $bg-options: options are css background properties (ex. no-repeat center center) | |
@mixin bg-cover($bg-img-path, $bg-options) { | |
background: url($bg-img-path) $bg-options; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='#{$bg-img-path}', sizingMethod='scale'); | |
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='#{$bg-img-path}', sizingMethod='scale')"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment