I’m working on a CSS file that is quite long. I know that the client could ask for changes to the color scheme, and was wondering: is it possible...
I am trying to use CSS variables in media query and it does not work. :root { --mobile-breakpoint: 642px; } @media (max-width: var(--mobile-breakpoint)) { } 9 Answers 9
I am designing an app in electron, so I have access to CSS variables. I have defined a color variable in vars.css: :root { --color: #f0f0f0; } I want...