{
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
}
or
element
{
filter: alpha(opacity=80);
}
In Internet Explorer 8, the approach is already (finally!) vendor-specific (a lá -moz-
for FireFox, -webkit-
for Safari and -o-
for Opera) and the value is a string in quotes:
element
{
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
The entire article on the new Microsoft vendor extensions can be found on the official Internet Explorer blog.
More Cool Stuff
© 2006 - 2023 Martin Ivanov