DEV Community

Discussion on: Cool CSS tips And Tricks

Collapse
 
afif profile image
Temani Afif

media query cannot be defined with CSS variables, you can try your example. It won't work.
The reason is simple, we can easily run into undefined behaviors:
Ex:

:root {
  --m:700px;
}
@media screen and (min-width: var(--m)) {
 :root {
   --m:800px
 }
}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
kalashin1 profile image
Kinanee Samson

Forgive me, i used this a lot with SCSS, i thought it has built in support for CSS..