Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Edge browser: css filter property

Are css filters implemented at all in the Edge browser?

  -webkit-filter: blur(10px);
     -moz-filter: blur(10px);
       -o-filter: blur(10px);
      -ms-filter: blur(10px);
          filter: blur(10px);

Nothing of these works.

Disclaimer: I'm testing it on version 20.10240 (it is on virtual machine, which I cannot update).

Is there filter property for that specific version?

If not, is it fixed in the newer edge versions?

like image 350
Kiril Kirilov Avatar asked Dec 24 '22 11:12

Kiril Kirilov


2 Answers

Yes it is supported but you have to activate this in about:flags.

enter image description here

like image 184
Etienne Margraff Avatar answered Dec 27 '22 03:12

Etienne Margraff


Filters didn't work for me, because I had z-index: -1. Maybe that could help someone.

like image 26
Demven Weir Avatar answered Dec 27 '22 03:12

Demven Weir