Answer the question
In order to leave comments, you need to log in
How to use @support in scss?
Hello!
How to use @supports css property in scss?
@mixin support($prop,$vars...){
@supports "#{$prop}"{
@each $key in $vars{
.#{$key} {
@content;
}
}
}
}
@supports (background-clip:text) or (-webkit-background-clip:text) or (-moz-background-clip:text){
}
Answer the question
In order to leave comments, you need to log in
Forget it, it's generally unknown when normal cross-browser support will appear @supports
. At a minimum, you need to wait for the death of IE9-11
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question