1

I was toying with zoom display on my web browser ( ctrl + scroll ) and i found that my website looks a lot better in zoom 90% compared to the default zoom 100%.

So i was wondering is they anyway to get my website on the 90% aspect without changing one by one all the Css stylesheets ?

Thanks in advance for the help,

Jackymamouth
  • 159
  • 2
  • 11

1 Answers1

0

Use the transform css property:

transform: scale(90%);

...or just use zoom:

zoom: 0.9;

Make sure to append -webkit- and -moz- and -o- for maximum compatibility in transform & scale!

ForceMagic
  • 516
  • 8
  • 19