Hi folks,
I really would love to scale webpages down or up. Is there any way I can implement this?
Hi folks,
I really would love to scale webpages down or up. Is there any way I can implement this?
You can use this CSS on your container element:
-webkit-transform: scale(2);
-moz-transform: scale(2);
transform: scale(2);
A post with more information on CSS3 transforms: http://www.the-art-of-web.com/css/css-animation/