Вот упрощенная версия моего макета: < /p>
< /code>
.content-area-mask {
mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}
.message.tip {
backdrop-filter: blur(44px);
background: hsla(130, 35%, 45%, 0.25);
}
< /code>
When the parent (.content-area-mask) has a mask-image, the backdrop-filter in .message.tip stops working — the blur simply doesn't apply.
Is there a workaround or solution that allows both mask-image and backdrop-filter to take effect together?
If this is a known limitation in browsers (e.g., Chrome/WebKit), is there a clean fallback or way to simulate the blurred background visually, even if the blur cannot be rendered natively?
Any help, hacks, or best practices would be appreciated.
Live example on CodePen: https://codepen.io/Alie-z/pen/xbGXrbL
Подробнее здесь: https://stackoverflow.com/questions/796 ... er-to-fail
Мобильная версия