Hope someone can help me with this problem.
:hover doesn't work in Firefox. In Google Chrome, Safari, IE works great. In IE the animation doesn't work but it doesn't meatier, works at least. I know how to solve it with jquery it's not a solution.
thank you
HTML:
<article>
<div class="over">
<span class="text">
<h3></h3>
</span>
</div>
<div></div>
<div class="over">
<span class="text">
<h3></h3>
</span>
</div>
<div></div>
<div class="over">
<span class="text">
<h3></h3>
</span>
</div>
<div></div>
<div class="over">
<span class="text">
<h3></h3>
</span>
</div>
<div></div>
</article>
CSS:
article > div.over {
width: 25%;
height: 100%;
display: inline-block;
float: left;
position: absolute;
border: 0;
margin: 0;
padding: 0;
background: rgba(55,55,55,0.6);
color: #FFF;
opacity: 0;
z-index: 1000;
}
article > div.over:hover {
transition: all 1s ease-out;
-webkit-transition: all 1s ease-out;
-moz-transition: all 1s ease-out;
-o-transition: all 1s ease-out;
opacity: 1;
}
Preview: http://reveofficial.com/fashion.php