Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css supports

@supports (display: grid) {
  div {
    display: grid;
  }
}
@supports not (display: grid) {
  div {
    float: right;
  }
}
Comment

@supports css

.primary-navigation {
  background: hsl(var(--clr-dark) / 0.95);
}
/* if backdrop-filter is supported by browser */
@supports (backdrop-filter: blur(1rem)) {
  .primary-navigation {
    background: hsl(var(--clr-white) / 0.05);
    backdrop-filter: blur(1.5rem);
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: outline radius css 
Css :: textarea disable resize 
Css :: bootstrap card hover effect 
Css :: center wrapped flex children 
Css :: most common media query sizes 
Css :: css background 
Css :: how to hide some grid items from grid in css 
Css :: scss linear gradient not working 
Css :: add css to class=["col-"] 
Css :: text shadow effect 
Css :: curve bottom of square css 
Css :: how to remove bullet in css 
Css :: import google fonts into react 
Css :: Align vertically and horizontally 
Css :: comment css 
Css :: html css make p div into two lines 
Css :: css img src 
Css :: cursor couleur in css 
Css :: css add space to the top 
Css :: zoom image inside div and move 
Css :: center things with css 
Css :: add dots instead of line break in css 
Css :: css table th width 
Css :: free computer screen recording software 
Css :: css disable input 
Css :: setting multiple css using dom 
Css :: how to add color in css 
Css :: css fadeout animation 
Css :: css disabled hover style 
Css :: use svg icon to before after 
ADD CONTENT
Topic
Content
Source link
Name
5+9 =