css-transform Flashcards
1
Q
What does the transform property do?
A
lets you rotate, scale, skew, or translate an element
2
Q
Give four examples of CSS transform functions.
A
rotate(.5turn);
skew(30deg, 20deg);
scale(2, .5);
matrix(1, 2, 3, 4, 5, 6);