Conditional Styling For Unsupported CSS Features
@supports (display: grid) {
div {
display: grid;
}
}@supports not (background-blend-mode: normal) {
body {
background-image: url(fallback.png);
}
}PreviousClean Up Repetition With :is() Pseudo-ClassNextCreate A Pulsing Background With CSS Animation
Last updated