1/* Answer to "blur behind element css" */
2
3/*
4 This blurs everything behind the element it's applied to
5*/
6
7backdrop-filter: blur(10px);
1// best workaround is two images layered... (one on left is on top)
2background-image: url(opaque_blurred.png), url(regular_bakground_img.jpg);
3// BAM! that right there is worth at least a buck donation ;-)