Math with CSS custom properties
/* Nope */
font-size: var(--value) + var(--unit);
/* Yep */
font-size: calc(var(--value) * 1px);
another example:
.p {
width: calc(var(--parentWidth) * var(--leftSize) - var(--padding));
}
/* Nope */
font-size: var(--value) + var(--unit);
/* Yep */
font-size: calc(var(--value) * 1px);
another example:
.p {
width: calc(var(--parentWidth) * var(--leftSize) - var(--padding));
}