How can I zoom an HTML element in Firefox and Opera?

前端 未结 12 663
猫巷女王i
猫巷女王i 2020-11-29 02:00

How can I zoom an HTML element in Firefox and Opera?

The zoom property is working in IE, Google Chrome and Safari, but it’s not working in Firefox and O

12条回答
  •  独厮守ぢ
    2020-11-29 02:42

    try this code to zoom the whole page in fireFox

    -moz-transform: scale(2);
    

    if I am using this code, the whole page scaled with y and x scroll not properly zoom

    so Sorry to say fireFox not working well using "-moz-transform: scale(2);"
    

    **

    Simply you can't zoom your page using css in fireFox

    **

提交回复
热议问题