I have a CSS question; transform-origin is not working in firefox. The site is centered on chrome and safari, but not on firefox.
html {
transform: scale(0.9);
transform-origin: center top;
}
My site is http://test.lafsdesign.com/
I'd appreciate if you could help me fix this issue. Thank you so much in advance.
Full CSS
@media screen and (max-width: 1240px) {
html {
zoom: 0.9;
-moz-transform: scale(0.9);
-moz-transform-origin: center top;
}
}
@media screen and (max-width: 1140px) {
html {
zoom: 0.8;
-moz-transform: scale(0.8);
}
}
@media screen and (max-width: 1005px) {
html {
zoom: 0.7;
-moz-transform: scale(0.7);
}
}
@media screen and (max-width: 880px) {
html {
zoom: 0.6;
-moz-transform: scale(0.6);
}
}