Home » CSS » CSS 2D Transforms » Question
  1. Which of the following increases or decreases the size of element?
    1. matrix()
    2. scale()
    3. skewY()
    4. skewX()
    5. None of these
Correct Option: B

The scale() method increases or decreases the size of an element according to the parameters given for width and height,

div {-ms-transform: scale(3,5); -webkit-transform: scale(3,5); transform: scale(3,5);}



Your comments will be displayed only after manual approval.