Which css transition property is really used when you use the css property:
.selector { transform: scale(n); }
I am trying to isolate which values ββreally change when I scale something using CSS. It works, but it also animates everything I don't want to do. I only want to animate the height / width of the object:
.selector { transition: all 0.3s linear; }
Instead of "everything", I tried setting the width of the width, but it does not smoothly animate. He simply becomes attached to the final position.
tvpmb source share