Day 66: individual transform properties

from blog Manuel Matuzović - Blog, | ↗ original
↗ original
From now on you can transform elements with the translate, rotate, and scale properties.Let’s say you apply several transforms to an element, and on :hover and :focus you only want to change one of them, for example, scale. Transform button { transform: translateX(20px) rotate(15deg) scale(1); } button:is(:hover, :focus) { transform:...