I cannot get hover opacity for change in firefox or IE. he works in chrome. Firefox and IE can work with the initial state of opacity, as defined in .move, but just don't hover. Any ideas.
<style> .move{ width:100px; height:100px; background-color:red; opacity:0.2; filter:alpha(opacity=20); } .move:hover{ opacity:1; filter:alpha(opacity=100); } </style> <div class="move"></div>
source share