I have got ot the following css to make my table cell’s background transparent
background-color:black;
filter: alpha(opacity = 20);
the problem is, this transparency also makes the text transparent. How can i make it only target the background. or how can i over ride it when in my <span>. I’ve tired setting the occupicy to 100 in my <span>s for text but it doesnt override it. the text still comes out transparent
EDIT: I’m using IE6
You want to use
rgbacolor which lets you set the alpha transparency of the color:Read about
rgbahere: http://css-tricks.com/rgba-browser-support/You can use filter for IE, code for all browsers would be: