Variable Visions

@supports not

Published Thu. Jul. 04, 2019

Rather than using old IE if statements in your CSS, you can now use the suports query to determine if the users browsers suports the rule or not.



@supports not
(background-blend-mode: soft-light) {
     .entry-header {background: #CCC !important;}
}