I am facing a problem while scaling a div using CSS. I am using the below CSS to scale a div. But the whole window is getting scaled. 'ScaleOn is the class of that div'
div.scaleOn {
transform: scale(2, 5);
-moz-transform: scale(2, 5);
-ms-transform: scale(2, 5);
-webkit-transform: scale(2, 5);
-o-transform: scale(2, 5);
}