Just watch this in Firefox and in Chrome. http://jsfiddle.net/TBwXm/
div#back {
background: url('http://dummy-images.com/abstract/dummy-250x250-Rope.jpg');
width: 250px; height: 250px;
-ms-transition: all 1.5s ease 0;
-moz-transition: all 1.5s ease-in-out;
-webkit-transition: all 1.5s ease 0;
-o-transition: all 1.5s ease 0;
transition: all 1.5s ease-out 0;
}
div#back:hover {
background:url('http://dummy-images.com/abstract/dummy-250x250-Floral.jpg'); }
I've tried several things, like Why is my CSS3 Transition not working in Firefox? or Why does this CSS hover transition fail in FireFox?
The included demo of the last link works on FF, I copied the source code and tried it with my div, but nothing happens.
Does someone know what's going on?
Thanks!