How can you make a table color opaque black using html codes on a webpage.?
I want it to look black but see through sort of and I need a html code for this...
Public Comments
- if the background is white, you could make a seethrough-ish thing by making the table color grey, or giving it a tint for a different background color. As far as i know there's no command for translucent backgrounds
- If you want to achieve a translucent effect with a background image, it is possible, but not as easy to do for IE. Visit this page in Firefox: http://www.meyerweb.com/eric/css/edge/complexspiral/demo.html To make it work with IE, you'll need to add a set of bugfixes to your page called "IE7": http://dean.edwards.name/IE7/ You'll have to create your own images and adapt the techniques to suit your page.
- <table><tr><td style="background-color:black; color:white; filter:alpha(opacity=60); -moz-opacity=0.6; -khtml-opacitiy:0.6; opacity:0.6;">your text</td></tr><table> this example covers internet explorer, mozilla, safari, kommander and css 2.0
Powered by Yahoo! Answers