I have a CSS question; transform-origin does not work in firefox. The site is focused on chrome and safari, but not on firefox.
html { transform: scale(0.9); transform-origin: center top; }
My website is http://test.lafsdesign.com/
I would be grateful if you could help me fix this problem. 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); } }
html css firefox transform scale
Love at first site design
source share