mirror of
https://github.com/muerwre/muerwre.github.io.git
synced 2025-04-24 18:36:41 +07:00
371 B
371 B
To test if browser supports some #CSS rules, do following:
@supports (backdrop-filter: blur(5px)) {
backdrop-filter: blur(5px);
}
This @mixin
will only apply rule if browser support backdrop filtering:
@mixin can_backdrop {
@supports (
(-webkit-backdrop-filter: blur(5px)) or
(backdrop-filter: blur(5px))
) {
@content;
}
}