Image Opacity / Transparency The CSS opacity property is a part of the CSS3 recommendation. Example img { opacity: 0.4; filter: alpha(opacity=40); /* For IE8 and earlier */ } img:hover { opacity: 1.0; filter: alpha(opacity=100); /* For IE8 and earlie…