如何在 Mozilla 中查找给定 Webkit CSS 属性的等效属性
是否有任何工具/网站可以让我们在 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)));
Are there any tool/website where we can get the equivalent property in Mozilla of given Webkit CSS property?
For example:
background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(white), to(#869ab3));
euavalent to
background:-moz-repeating-linear-gradient(white, #869ab3);
and many more properties like
-webkit-appearance
-webkit-border-radius
or to know that there is not any equivalent property regarding some Webkit CSS, like
-webkit-transition:height 0.5s ease-in, padding-top 0.5s ease-in, padding-bottom 0.5s ease-in;
-webkit-transition-delay:0.5s;
I also want to know the Mozilla equivalent of this property:
background:-webkit-gradient(linear,left bottom,left top,color-stop(0.2, rgb(51,49,51)),color-stop(1, rgb(156,156,156)));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://css3generator.com/
http://www.colorzilla.com/gradient-editor/
http://css3please.com/
@font-face
:http://www.fontsquirrel.com/
https://developer.mozilla.org/en/CSS/-moz-linear -gradient
http://css3generator.com/
http://www.colorzilla.com/gradient-editor/
http://css3please.com/
@font-face
:http://www.fontsquirrel.com/
https://developer.mozilla.org/en/CSS/-moz-linear-gradient
您可以使用终极 CSS 生成器来获取为您编写的跨浏览器渐变< /em>.
您可以使用此网页来查看供应商特定选择器之间的差异。
You can use the Ultimate CSS generator To get the cross browser gradient written for you.
And you can use this webpage to see the differences between the vendor specific selectors.