How to find equivalent property in Mozilla of given Webkit CSS property

jdevine420

New Member
Are there any tool/website where we can get the equivalent property in Mozilla of given Webkit CSS property?For example: \[code\] background:-webkit-gradient(linear, 0% 0%, 0% 100%, from(white), to(#869ab3));euavalent to background:-moz-repeating-linear-gradient(white, #869ab3);\[/code\]and many more properties like[*]\[code\]-webkit-appearance\[/code\][*]\[code\]-webkit-border-radius\[/code\]or to know that there is not any equivalent property regarding some Webkit CSS, like\[code\] -webkit-transition:height 0.5s ease-in, padding-top 0.5s ease-in, padding-bottom 0.5s ease-in; -webkit-transition-delay:0.5s;\[/code\]I also want to know the Mozilla equivalent of this property:\[code\]background:-webkit-gradient(linear,left bottom,left top,color-stop(0.2, rgb(51,49,51)),color-stop(1, rgb(156,156,156)));\[/code\]
 
Top