I am working on this project http://79.115.10.208:5000, and I found that my site is more beautiful if you change the firefox browser zoom to 90%. Does it exist some trick to do quick resizing using CSS?
Asked
Active
Viewed 109 times
1 Answers
0
Try this on your css
body {
-moz-transform: scale(0.9, 0.9); /* Moz-browsers */
zoom: 0.9; /* Other non-webkit browsers */
zoom: 90%; /* Webkit browsers */
}

Bahrami-Reza
- 608
- 2
- 7
- 24
-
very nice solution, bat not working for my website, view this screen http://snag.gy/3MIVk.jpg – AutoSoft Oct 27 '15 at 11:37