css matrix code example
Example 1: css transform size
.selector {
transform: scale(1.2); // Will upscale to 1.2
}
Example 2: matrix css
p {
width: 50px;
height: 50px;
background-color: teal;
}
.transformation{
transform: matrix(0.87,-80.5,0,0.87,0,1);
background-color: blue;
}
Example 3: css scale
scale(sx)
scale(sx, sy)