I am testing my application on Firefox 33. I have a simple background property set with a gradient:
background: linear-gradient(bottom, #004771 0%, #005185 100%);
and it does not work. CanIUse reports that gradients in Firefox 33 can be used without a prefix. So why is this not working? If I add a Mozilla specific prefix:
background: -moz-linear-gradient(bottom, #004771 0%, #005185 100%);
everything is working fine.
source
share