Last active
October 5, 2024 13:48
-
-
Save webprogramozo/9684826e469e5dc375e98f65559e1509 to your computer and use it in GitHub Desktop.
Bootstrap modal with blurry background (Bootstrap 3,4,5)
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
/* Compatible with Bootstrap 3 and 4 */ | |
body.modal-open > :not(.modal) { | |
-webkit-filter: blur(1px); | |
-moz-filter: blur(1px); | |
-o-filter: blur(1px); | |
-ms-filter: blur(1px); | |
filter: blur(1px); | |
} |
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
/* Compatible with Bootstrap 5, thanks @imikh */ | |
.modal { | |
-webkit-backdrop-filter: blur(1px); | |
backdrop-filter: blur(1px); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is working in Bootstrap 5.3+! ✅✅✅
Great, thanks @imikh!