How to use var in CSS? [Solved] | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to use var in CSS? [Solved]

Why following code doesn't works: .child1{ background-color:gray; transform:translateZ(-var(--fixed_pix)); } but this one works well, .child1{ background-color:gray; transform:translateZ(-75px); } --fixed_pix has a value of 75px and is used in :root selector. So shudn't -var(--fixed_pix ) translate to -75px? Or am I missing something! ty.

20th Jan 2021, 10:42 AM
Abhay
Abhay - avatar
2 Answers
+ 4
Yes, you're missing something: negate the var implies a multiply by -1 operation, so: transform:translateZ(cal(-1 * var(--fixed_pix))); ... should work as expected ^^
20th Jan 2021, 10:48 AM
visph
visph - avatar
0
visph thank you :) also there is a typo, it is calc not cal.
20th Jan 2021, 11:17 AM
Abhay
Abhay - avatar