Skip to content

Instantly share code, notes, and snippets.

@mpukit
Created January 10, 2018 21:02
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 mpukit/da39e0a5bb590ba9785916d8c99fbf24 to your computer and use it in GitHub Desktop.
Save mpukit/da39e0a5bb590ba9785916d8c99fbf24 to your computer and use it in GitHub Desktop.
Prevent Page Load Page Jump (scrollbar not present)
// Prevent Screen Jump
@media screen and (min-width: 1200px) { // Less noticable on larger screens
html {
margin-left: calc(100vw - 100%);
margin-right: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment