I am finding it hard to get fully cross browser CSS zoom properties ..what I\'ve is only these
zoom: 2; -moz-transform: scale(2);
Seems like the answer today is
.zoom { zoom: 2; /* Chrome */ transform: scale(2); /* FF, neglected by Chrome */ transform-origin: 0; }
That is a clinch. ;-)