Created
May 7, 2014 00:16
-
-
Save miloplacencia/a3b9d5de7465a94bc2e4 to your computer and use it in GitHub Desktop.
Emulating Position Fixed
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
/* https://coderwall.com/p/8rz_7g*/ | |
html { | |
position: absolute; | |
height: 100%; | |
overflow: hidden; | |
} | |
body { | |
height: 100%; | |
overflow: auto; | |
} | |
.fixed { | |
position: absolute; | |
} | |
.scroll { | |
overflow: scroll; | |
-webkit-overflow-scrolling: touch; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment