0

Is it possible to set the browser zoom on a webpage I'm making to say 75% automatically on load with javascript? if so how can you do this? I've googled but haven't really found anything. thanks.

user182
  • 1,805
  • 5
  • 18
  • 18

1 Answers1

1
<meta name="viewport" content="width=device-width">

and in CSS, make the body { width:75%; margin:auto; } to shrink content and center it.

Casey Dwayne
  • 2,142
  • 1
  • 17
  • 32