+1 vote
in CSS by
How to determine if the browser supports a certain feature?

1 Answer

0 votes
by

The @support in CSS can be very useful to scan if the current browser has support for a certain feature.

@supports (display: grid) {

div {

display: grid;

}

}

Related questions

0 votes
asked Nov 29, 2019 in Machine Learning by SakshiSharma
0 votes
asked Oct 8, 2023 in JavaScript by JackTerrance
...