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 :: gradient text colors 
Css :: html css make p div into two lines 
Css :: superscript css 
Css :: flex direction tailwind 
Css :: laravel enum column 
Css :: How do you get a 2nd last child in CSS? 
Css :: @font-face css 
Css :: cursor couleur in css 
Css :: Bootstrap default accordion arrow icon change 
Css :: html invisible hr 
Css :: css table properties 
Css :: table data max width 
Css :: flex align self 
Css :: inline block text align top 
Css :: css good border color 
Css :: type selector css 
Css :: input default css properties 
Css :: add shadow to iframe 
Css :: change svg color on hover, css 
Css :: css onclick change color 
Css :: bottom gradient 
Css :: how to horizontally center header at the top of page with flexbox css 
Css :: after icon css 
Css :: bootstrap 4 scss angular 8 
Css :: Sf pro font html 
Css :: get ssl certificate command line 
Css :: using materialize css with react 
Css :: how to make two different animations to one element css 
Css :: bootstrap class="mb-3" 
Css :: overflow-y scroll css 
ADD CONTENT
Topic
Content
Source link
Name
5+5 =