Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 Opera.

Is there any method for adding this property to Firefox and Opera?

like image 930
SABU Avatar asked Oct 29 '10 05:10

SABU


1 Answers

Try this code, this’ll work:

-moz-transform: scale(2); 

You can refer to this.

like image 58
Mubeen Avatar answered Sep 18 '22 17:09

Mubeen