0

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?

Legionar
  • 7,472
  • 2
  • 41
  • 70
AutoSoft
  • 191
  • 1
  • 1
  • 11

1 Answers1

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