Multi-Value CSS Properties With Optional Custom Property Values
Imagine you have an element with a multi-value CSS property, such as transform
: optional custom property values:
.el {
transform: translate(100px) scale(1.5) skew(5deg);
}
Now imagine you don’t always want all the transform
values to be applied, so some …