Breakpoints variables with pure CSS

In CSS can use variables most of the time. ⛶:root { --color-main: red; }But, can't use variables in @media queries. ⛶@media (min-width: var(--br-md) { /* will never work */ }Unexpected solution ...
0 Read More