CSS browser support queries
Instead of doing media queries for specific browser that doesn’t support your CSS feature just do:
@supports (display: grid) {
}
or any other CSS feature (instead of display: grid
)
Instead of doing media queries for specific browser that doesn’t support your CSS feature just do:
@supports (display: grid) {
}
or any other CSS feature (instead of display: grid
)