@supports()
The ‘@supports’ rule is a conditional group rule whose condition tests whether the user agent supports CSS property:value pairs. See also the CSS.supports() DOM API
/* Unprefixed support in Fx, Ch, Op 25+, Android 4.4+. Note: no (iOS) Safari */
@supports ( display: flexbox ) {
body { display: flexbox; }
...
}