Scale x and y the same amount (smaller).
transform: scale(0.75);


Scale x and y the same amount (bigger).
transform: scale(1.5);


Scale x and y different amounts.
transform: scale(2.0, 1.5);


Scale X only.
transform: scaleX(1.5);


Scale Y only.
transform: scaleY(1.5);