Created
July 17, 2014 22:35
-
-
Save antoniocapelo/ad7d8ad139304460c769 to your computer and use it in GitHub Desktop.
Procedure to obtain the background cover effect whichs works on small or large screens
This file contains hidden or 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
// Procedure to obtain the background cover effect whichs works on small or large screens | |
html { | |
background: url(url_to_img) no-repeat center center fixed; | |
background-size: cover; | |
height: 100%; | |
overflow: hidden; | |
} | |
body | |
{ | |
height:100%; | |
overflow: scroll; | |
-webkit-overflow-scrolling: touch; | |
background: transparent; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment