# IT:AD:CSS/Transforms/Scale #
* [[../|(UP)]]
{{indexmenu>.#2|nsort tsort}}
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...
## Resources ##
* http://learn.shayhowe.com/advanced-html-css/css-transforms