View Full Version : Opacity and Positioning


Brown_Eyed_Girl
06-21-2003, 10:53 PM
Okay two more questions..one, what is the tag for the opacity filter of a table? like if you want to be able to see the background of your website, but you also want to have a color in the background of your table? And second..what is the tag to position your table in the website? Like the tag where you can plug in how many pixels from the top and left side?

zangerbanger
06-21-2003, 11:22 PM
You can combine those 2 features into one code:


<table style="position:absolute; top:#px; left:#px; filter:alpha(opacity=70)">


Make sure you change the number of pixels from the top and left. You can also change the opacity depending on how transparent you want your table :) .

Brown_Eyed_Girl
06-21-2003, 11:23 PM
thank you so much!