
How to Check For Support in CSS?
You can use the @supports
CSS rule to check whether a CSS feature is supported:
Copied to clipboard!
// Use the @supports CSS at-rule for feature queries
@supports (mix-blend-mode: overlay) {
.blending {
mix-blend-mode: overlay;
}
}
If you need to depend on supporting functionality in JavaScript, you can also achieve the same thing using the built-in CSS
API:
Copied to clipboard! Playground
// The method accepts two parameters:
// β’ the CSS property to check
// β’ the value of the CSS property
// it will return either true or false, based on whether the feature is supported
CSS.supports('mix-blend-mode', 'overlay');

Resources:
π More Webtips
Master the Art of Frontend
Access exclusive interactive lessons
Unlimited access to hundreds of tutorials
Remove ads to learn without distractions
Courses

CSS - The Complete Guide (including Flexbox, Grid and Sass)
Including Flexbox, Grid, and Sass
Whether you're learning CSS for the first time or brushing up on your CSS skills and diving even deeper, this course is for you. Every web developer has to know CSS.

The HTML & CSS Bootcamp
From Zero to Expert!
This course covers flexbox, CSS grid, animations, responsive design, and much more! You will find tons of exercises & projects inside this course.

The Creative HTML5 & CSS3 Course
Build Awesome Websites
Learn HTML5 and CSS3 by creating three amazing, well-designed and animated websites from scratch.