CSS @supports: Progressive Enhancement and Feature Detection
@supports is the CSS equivalent of JavaScript feature detection — it lets you apply styles only when the browser supports a specific property or value, without a JavaScript polyfill or a class added by Modernizr. Combined with @supports selector() (for testing pseudo-class support) and @supports font-tech() (for font feature detection), it provides a complete feature-detection…