Here is my html and css code for hover state.
Html:
<div class="col-3">
<div class="popular"> <a href="#" ><img src="http://s10.postimg.org/4zqkz9rxl/saina_2.png"/></a></div>
</div>
css:
div.col-3 {
-webkit-column-count: 3;
-webkit-column-gap: 10px;
-moz-column-count: 3;
-moz-column-gap: 10px;
column-count:3;
column-gap:10px;
margin:20px 30px;
}
.popular:hover {
opacity:0.7;
background-color:#FF1493;
}
Here is my jsfiddle: http://jsfiddle.net/7sbw18j0/
When i hover an image, it doesn't show like pink color with opacity.
Can anyone help me? Thanks in advance.