Is there a way to change the zoom of a website with javascript if the users display settings scaling is set over 100% forexample: 125% 150%?

Viewed 18
1 Answers

You can scale elements using transform scale:

.example-element {transform: scale(150%)}

but screen scaling as you mean is handled in the browser.

Related