CSS Media
Adjusting element transparency in IE and Firefox
Wed, 2008-04-02 22:41 — iDonnyStandards compliant browsers (FF, Safari etc) and IE browsers require different CSS selector definitions to implement transparency. Here is what is necessary to set the following element to 50% transparency.
div#header
{
opacity: 0.5;
filter: alpha(opacity = 50);
}


