Answers for "no css support"

CSS
3

css supports

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

css not class

/* Style everything but the .different class */
li:not(.different) {
  font-size: 3em;
}
Posted by: Guest on April-16-2020

Browse Popular Code Answers by Language