InterviewSolution
Saved Bookmarks
| 1. |
How to determine if the browser supports a certain feature? |
|
Answer» 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; }} |
|