Answers for "a css rule that's is not support in modern browsers"

CSS
3

css supports

@supports (display: grid) {
  div {
    display: grid;
  }
}
@supports not (display: grid) {
  div {
    float: right;
  }
}
Posted by: Guest on September-30-2020

Code answers related to "a css rule that's is not support in modern browsers"

Browse Popular Code Answers by Language