views:

46

answers:

2

How can I zoom a <div> 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?

A: 

Try this code, this’ll work:

-moz-transform: scale(2);

You can refer to this.

Mubeen
Ya this is working perfectly. Is there is any method to change -moz-transform scaling factor to percentage
shahul
+1  A: 

I'd refer you to this question which answers yours pretty thoroughly.

Steve