IT:AD:CSS/Transforms/Scale
Summary
Any html object can be scaled.
Process
Rotations are done using transform: scale(percentage) (which can be in only one axis using scaleX and scaleY):
.halfscale {
-webkit-transform: scale(0.5);
-moz-transform: scale(-0.5);
-o-transform: scale(-0.5);
transform: scale(-0.5);
}
The -webkit-, -moz- and -o- prefixes are only applied to account for different browsers…