complete styles for cross browser CSS zoom

后端 未结 5 1006
小鲜肉
小鲜肉 2020-11-28 04:54

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);
5条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 05:50

    Seems like the answer today is

    .zoom {
         zoom: 2; /* Chrome */
         transform: scale(2); /* FF, neglected by Chrome */
         transform-origin: 0;
    }
    

    That is a clinch. ;-)

提交回复
热议问题