Last active
July 4, 2017 15:42
-
-
Save daveaseeman/0077d94188870ee40a74dc16290ed2e7 to your computer and use it in GitHub Desktop.
Full size background on mobile using media-query
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
.mobile-bg { | |
background-image: url('smiley.gif'); // remove if setting url in html | |
background-repeat: no-repeat; | |
background-attachment: fixed; | |
background-position: center center; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
@media #{$small-and-down} { | |
background-attachment: scroll; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment