Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AnnoyingTechnology/191e888988242371699fb7870f0e379e to your computer and use it in GitHub Desktop.
Save AnnoyingTechnology/191e888988242371699fb7870f0e379e to your computer and use it in GitHub Desktop.
Bootstrap modal with blurry background
/* blurred background modal for bootstrap v4 */
body.modal-open > :not(.modal) {
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
filter: blur(5px);
}
@DhiaDjobbi
Copy link

Works perfectly fine 👍

@AnnoyingTechnology
Copy link
Author

Glad you found it useful :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment