Can I zoom in on a webpage?

I would love to scale web pages down or up. Is there any way to implement this?

+3
source share
2 answers

You can use this CSS for your container element:

-webkit-transform: scale(2);
-moz-transform: scale(2);
transform: scale(2);

Post with more information on CSS3 transformations: http://www.the-art-of-web.com/css/css-animation/

+5
source

In IE, you can use the css property zoom.

+1
source

Source: https://habr.com/ru/post/1755318/


All Articles