Change image Opacity on mouse hover

Jul 13

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 ********/
}

468 ad