I am trying to scale a div containing a child div (with css background image) on hover. When I scale the div, the child div is also scaled. How can I get the child div to not inherit the animation of the parent? See my structure and fiddle here:
<div style="background:#000;">
<div class="icon-wrap icon-effect">
<a href="#">
<div class="icon">
<div class="arrow-down"></div>
</div>
</a>
</div>
</div>