Skip to content

Instantly share code, notes, and snippets.

@miloplacencia
Created May 7, 2014 00:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miloplacencia/a3b9d5de7465a94bc2e4 to your computer and use it in GitHub Desktop.
Save miloplacencia/a3b9d5de7465a94bc2e4 to your computer and use it in GitHub Desktop.
Emulating Position Fixed
/* 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