Opacity css ie internet explorer issue
The opacity feature of css does not work on internet explorer IE, to overcome that use filter option.
Eg
.change_opacity {
opacity: 0.5;
filter: alpha(opacity = 50);
}
Note: The value of filter is different from opacity
Click here to view the source