Here are the display settings I meant... It is always set on laptops to 150%...
Is there a way to change the zoom of a website with javascript if the users' display settings scaling is set over 100% for example: 125% 150%?
Here are the display settings I meant... It is always set on laptops to 150%...
Is there a way to change the zoom of a website with javascript if the users' display settings scaling is set over 100% for example: 125% 150%?
You can scale elements using transform scale:
.example-element {transform: scale(150%)}
but screen scaling as you mean is handled in the browser.