CSS how to target background and make it transparent -


i using ie6 , occupicy thing can thing works opacity: 0.5; filter: alpha(opacity = 50);

background-color:black;      opacity: 0.5;      filter: alpha(opacity = 50); 

this works makes text transparent how can make background colour transparent

it's simple have give

background: rgba(0,0,0,0.5) 

& ie use filter

{background: transparent;-ms-filter: "progid:dximagetransform.microsoft.gradient(startcolorstr=#7f000000,endcolorstr=#7f000000)"; /* ie8 */    filter: progid:dximagetransform.microsoft.gradient(startcolorstr=#7f000000,endcolorstr=#7f000000);   /* ie6 & 7 */      zoom: 1;} 

for more color transparency in ie have read hsla color: http://greenevillage.net/csspages/hsla.aspx


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -