I'm encountering an issue with HTML opacity...
Currently, I've implemented opacity using CSS but it's not functioning correctly. Below is my HTML and CSS code:
<area shape ="rect" class="transbox" coords ="0,0,30,22"
href ="test1.htm" target ="_blank" opacity="0.5" />
area{
opacity: 0.6;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
filter: alpha(opacity=60);
-moz-opacity: 0.60;
-khtml-opacity: 0.6;
}
Does anyone have any insights on this?
Appreciate your help!