I am trying to set a CSS variable with a number then I want to use it in my CSS as a percentage, while in other places I will need to use it as a plain number for some calc()
operations.
Example
--mywidth:10;
div{width:var(--mywidth) + %;} --- should be ---> width:10%
is it possible?