Reputation:
In my application am using transparent div like a show modal dialog.Its working fine in firefox but not working well in internet explorer.
What is the solution to work similar in both
Thanks
Upvotes: 0
Views: 412
Reputation: 45731
IE6 needs to set an alpha-filter for transparency:
.transparent {
opacity: 0.5;
filter: alpha(opacity = 50); /* Needed for IE6 */
}
I would recommend to have the filter rule in a separate stylesheet for good measure.
Upvotes: 1