Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why backdrop filter in Firefox don't work?

Tags:

css

firefox

blur

I use backdrop-filter: blur(30px); but firefox unsupported this property; -moz-backdrop-filter: blur(60px); also doesn't work

like image 276
andrew kot Avatar asked Sep 08 '20 08:09

andrew kot


3 Answers

Its not supported by default https://caniuse.com/css-backdrop-filter

However you can activate it manually.

Navigate to about:config and set it to true enter image description here

like image 193
Ifaruki Avatar answered Nov 02 '22 23:11

Ifaruki


As described on https://developer.mozilla.org/en-US/docs/Web/CSS/backdrop-filter, both layout.css.backdrop-filter.enabled and gfx.webrender.all have to be set to true.

Important: the browser must be restarted for it to work

like image 36
Anomalion Avatar answered Nov 03 '22 00:11

Anomalion


I just wanted to point out that, as of yesterday, the newest Firefox Nightly Release does support backdrop-filter after enabling gfx.webrender.all and layout.css.backdrop-filter.enabled in about:config.

It will also be officially implemented in Version 102 (which will be released on 28.06.2022) as far as I could grasp that.

like image 27
Luna Avatar answered Nov 02 '22 23:11

Luna