Skip to content

Instantly share code, notes, and snippets.

@hardikdangar
Forked from yang-wei/fullscreen.css
Created October 8, 2020 11:41
Show Gist options
  • Save hardikdangar/5674941970417a7a773bda7cd317f20d to your computer and use it in GitHub Desktop.
Save hardikdangar/5674941970417a7a773bda7cd317f20d to your computer and use it in GitHub Desktop.
Full size background image using CSS cover in mobile devices
html {
background: url(image url) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
height: 100%;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment