Background Transparency

  • Thread starter Thread starter King Coffee
  • Start date Start date
K

King Coffee

Hi,

This is probably a CSS question but I don't know where to turn. I'm using a
modalpopup ajax control. It uses a link to a CSS rule to style the page
background. I want to make or overlay the background with a transparent
color. The VS ASP.NET 2008 CSS intellisense do not list a filter: alpha()
rule. So, how can I make the background partially transparent ?

King
 
Hi,

This is probably a CSS question but I don't know where to turn. I'm usinga
modalpopup ajax control. It uses a link to a CSS rule to style the page
background. I want to make or overlay the background with a transparent
color. The VS ASP.NET 2008 CSS intellisense do not list a filter: alpha()
rule. So, how can I make the background partially transparent ?

King

Simply type

filter:alpha(opacity=75);

More: http://msdn.microsoft.com/en-us/library/ms532967.aspx
 
Back
Top