Currently, I am using visual studio 2008 for developing a web application. The CSS version being used is 2.1 and the browser version is IE9. Due to the absence of the opacity property in CSS 2.1, I have resorted to utilizing -ms-filter
to ensure my code functions correctly in IE9. Here is an excerpt from my code:
.wait
{
position: absolute;
height: 100%;
width: 100%;
display: none;
z-index: 0;
background-color: #E1FFFF;
text-align: center;
cursor: wait;
opacity: 0.5;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
Despite implementing this workaround, the code is not functioning as intended. Any assistance would be greatly appreciated.