0

I am working on a responsive website and the elements on the website are larger than I anticipate. I would like to zoom out or scale back the website such that if the website is loaded in a device of certain width, it would show the scaled down version. I know it can be done using the media queries but I would like to do something less painful and just scale the website down to 0.8. Similar to zooming out to 80% in chrome browser.

Sunil Jamkatel
  • 133
  • 1
  • 12
  • The same here but without @media http://stackoverflow.com/questions/17333254/scale-the-contents-of-a-div-by-a-percentage – Lucas Steffen Mar 14 '17 at 21:03

1 Answers1

4

You could do:

@media (max-width: 800px) {
    body: {
        zoom: .8;
    }
}
dave
  • 62,300
  • 5
  • 72
  • 93