Webkit CSSプロパティのMozillaで同等のプロパティを取得できるツール/ Webサイトはありますか?例えば与えられたWebkit CSSプロパティのMozillaで同等のプロパティを見つける方法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)));