开发者

Can I change a web page's scale?

开发者 https://www.devze.com 2023-01-07 17:50 出处:网络
I really would love to scale webpages down or up. Is there any way I can implement t开发者_高级运维his?You can use this CSS on your container element:

I really would love to scale webpages down or up. Is there any way I can implement t开发者_高级运维his?


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/


In IE you can use the css property zoom.

0

精彩评论

暂无评论...
验证码 换一张
取 消