I'm trying to fade in/out the background images using CSS.
I'm using CSS transitions
for this purpose.
-webkit-transition: all 0.9s ease-in-out 0s;
-moz-transition: all 0.9s ease-in-out 0s;
-ms-transition: all 0.9s ease-in-out 0s;
-o-transition: all 0.9s ease-in-out 0s;
transition: all 0.9s ease-in-out 0s;
The code above works fine in Chrome but it doesn't not work at all in Firefox at all!
Click on the 'Apple' text to view the transition in chrome.
Could someone please advice on this issue?