Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css supports

@supports (display: grid) {
  div {
    display: grid;
  }
}
@supports not (display: grid) {
  div {
    float: right;
  }
}
 
PREVIOUS NEXT
Tagged: #css #supports
ADD COMMENT
Topic
Name
4+9 =