Skip to content

Instantly share code, notes, and snippets.

@daveaseeman
Last active July 4, 2017 15:42
Show Gist options
  • Save daveaseeman/0077d94188870ee40a74dc16290ed2e7 to your computer and use it in GitHub Desktop.
Save daveaseeman/0077d94188870ee40a74dc16290ed2e7 to your computer and use it in GitHub Desktop.
Full size background on mobile using media-query
.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