Change image Opacity on mouse hover

  • Post category:CSS
  • Post comments:0 Comments
div.block-banners img {
    opacity: 0.9;
    filter:alpha(opacity=90);/******* This line for IE ********/
}
div.block-banners img:hover {
    opacity: 1;
    filter:alpha(opacity=100);/******* This line for IE ********/
}