html - How can I scale an entire web page with CSS? - Stack Overflow
This is a rather late answer, but you can use body { transform: scale(1.1); transform-origin: 10% 10%; // add prefixed versions too. } to zoom the page by 110%. Although the zoom style is there, Firefox still does not support it sadly. Also, this is sligh...