【发布时间】:2011-02-28 10:36:29
【问题描述】:
是否有任何工具/网站可以让我们在 Mozilla 中获得给定 Webkit CSS 属性的等效属性?
例如:
background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(white), to(#869ab3));
euavalent to
background:-moz-repeating-linear-gradient(white, #869ab3);
还有更多属性,例如
-webkit-appearance-webkit-border-radius
或者知道对于某些 Webkit CSS 没有任何等效属性,例如
-webkit-transition:height 0.5s ease-in, padding-top 0.5s ease-in, padding-bottom 0.5s ease-in;
-webkit-transition-delay:0.5s;
我也想知道这个属性的 Mozilla 等价物:
background:-webkit-gradient(linear,left bottom,left top,color-stop(0.2, rgb(51,49,51)),color-stop(1, rgb(156,156,156)));
【问题讨论】: