Skip to content

Instantly share code, notes, and snippets.

@webbower
Last active June 13, 2017 02:12
Show Gist options
  • Save webbower/67957e84ac22d01be7c3e0659193b751 to your computer and use it in GitHub Desktop.
Save webbower/67957e84ac22d01be7c3e0659193b751 to your computer and use it in GitHub Desktop.
CSS to prevent body scrolling while a modal is open
body.modal-is-visible {
/* https://stackoverflow.com/a/43677395/2684520 */
position: fixed;
overflow: hidden;
width: 100%;
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment