For rotate, note that this doesnt work: .element { rotate: 10deg; ) But this works: .element { transform: rotate(10deg); } In my case, the first syntax is used because this is forced by tailwindcss. Maybe the issue applies to translate, scale, and other 2D transforms.