-
Did you know, you can make a CSS Custom Property negative by multiplying it by -1? Example: --my-var: 1; --my-negative-var: calc(var(--my-var) * -1);
-
…in reply to @piccalilli_
extremely clunky when you compare it to say, Sass, but still: handy.