views:

65

answers:

2

Hi folks,

I really would love to scale webpages down or up. Is there any way I can implement this?

+1  A: 

In IE you can use the css property zoom.

Itay Moav
+5  A: 

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/

Mark
@Mark: GREAT STUFF! THANK YOU SO MUCH! =D Do you have a good link to point me to, where it goes a little more in depth? =)
RadiantHex
Interesting. How cross-browser is the `transform` property?
Piskvor
@RadiantHex this link is pretty good: http://www.the-art-of-web.com/css/css-animation/
Mark
@Piskvor It's a CSS3 property. It's supported on all major browsers except IE.
Mark
@Mark: this answer has made my day! =D Thanks! If you could put the link inside the answer, for other people to see that would be awesome. Ticking as soon as SO lets me!
RadiantHex
@Mark: ah, CSS3. Thanks.
Piskvor