Blur menu on safari

Replies

This can be achieved only on Safari only (on macOS/iOS) with filter property and is not available for Chrome, Firefox, Edge, Internet Explorer, Opera or Vivaldi.


You can try adding:

-webkit-filter: blur(15px);
-moz-filter: blur(15px);
-ms-filter: blur(15px);
filter: blur(15px);


And hope that support will be coming and it would work soon in others as well.