Open alistair3149 opened 2 months ago
Currently, the following styles will return Invalid or unsupported value for property. It would be great to allow the use of both calc() and CSS variables as the value.
Invalid or unsupported value for property
calc()
.item { left: calc( var( --var1 ) / var( --var2 ) * 100% ); right: calc( ( var( --var1 ) - var( --var2 ) ) / var( --var3 ) * 100% ); }
Currently, the following styles will return
Invalid or unsupported value for property
. It would be great to allow the use of bothcalc()
and CSS variables as the value.