是否有任何工具/网站可以在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)));
答案 0 :(得分:4)
@font-face
:答案 1 :(得分:3)
您可以使用Ultimate CSS generator获取为您编写的跨浏览器渐变 。
您可以使用this webpage查看供应商特定选择器之间的差异。