I would like to make my website like 80% smaller. i.e. zoom out images, fonts, everything to 80% of its current size. Is there any way to do this using jQuery or CSS?
I tried body { zoom:80% }
but it works only for Chrome.
CSS solution:
body { -moz-transform: scale(0.8, 0.8); /* Moz-browsers */ zoom: 0.8; /* Other non-webkit browsers */ zoom: 80%; /* Webkit browsers */ }
Supported on all major browsers http://caniuse.com/#feat=css-zoom
For Firefox, fallback is transform-scale http://caniuse.com/#feat=transforms2d
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With