I have a slider with an image mask which works fine in Firefox and Chrome (attached)
The CSS for it is quite simple:
position: absolute;
bottom: -150px;
width: 800px;
left: 50%;
transform: translateX(-50%);
z-index: 5;
-webkit-mask-image: url(assets/svg/mask.svg);
-webkit-mask-size: 100%;
-webkit-mask-repeat: no-repeat;
mask-image: url(assets/svg/mask.svg);
mask-size: 100%;
mask-repeat: no-repeat;
But when i open the page in Edge i don't see the element at all. I tried switching the mask to a PNG file, no luck. i thought maybe its the sliders fault, but even if i switch the content of the div to a blank black element (which also works in Firefox and chrome) i still get no result in Edge.
If i cross off the "mask-image" property the slider appears on the screen and works fine.
Here is the demo: http://box5602.temp.domains/~ednahous/
I have another website with an image mask on top of a video and it works fine in Edge... so i really have no idea what could be causing this issue.