Zoom in via CSS [duplicate]

1

I want to zoom in on the website using CSS, I know that using code body{font-size: 82.5%}; you can get the result, but the images remain the same size and elements entered via JQuery also continue to the previous size. Any method to zoom in on all the elements?

    
asked by anonymous 09.05.2017 / 23:58

1 answer

0

Use transform:

transform: scale(1.5);

Within the scale's parenthesis, modify the zoom as you like.

    
10.05.2017 / 00:02