My transition doesn't work on FireFox though it works perfectly on Edge and Chrome.
I tried to search this problem on Google but still couldn't fix it.
Here's my code:
.background{
width: 1280px;
height: 720px;
margin: 200px auto;
background-image: url(../img/hinh2.png);
-webkit-transition: background-image 1s ease-in-out;
-o-transition: background-image 1s ease-in-out;
-moz-transition: background-image 1s ease-in-out;
transition: background-image 1s ease-in-out;
background-size: contain;
}
.background:hover{
width: 1280px;
height: 720px;
margin: 200px auto;
background-image: url(../img/hinh1.png);
background-size: contain;
}
<div class="background"></div>
Thanks a lot for helping me!