Completion requirements
View
2. What is CSS transform?
2.6. The matrix() Method
To combine all the transformation into one, the matrix() method is used. There are six parameters that this method requires. Using these 6 parameters, the element is scaled, skewed and translated, all at once. The parameters required are the values of scaleX(), skewY(), skewX(), scaleY(), translateX() and translateY(), respectively.
div { transform: matrix(1, -0.3, 0, 1, 0,0); }