Problem Statement
Which of the following is NOT a valid transform function?
Explanation
Transform functions include rotate(), scale(), translate(), and skew(). `color()` is not a transform but a color manipulation function in filters or CSS Color Module.
Code Solution
SolutionRead Only
div { transform: rotate(45deg) scale(1.2); }Practice Sets
This question appears in the following practice sets:
