transparency

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
gavinbsocom
Forum Commoner
Posts: 71
Joined: Tue Sep 30, 2003 9:51 pm

transparency

Post by gavinbsocom »

Is there such a color code that you put it, that makes something transparent. Like seperating rows of information ,,, the best example of what im trying to do is... http://www.gamebattles.com on the left hand side you can see that all the different links are seperated by a space.. It seems if though they are transparent. Thankyou.
User avatar
vigge89
Forum Regular
Posts: 875
Joined: Wed Jul 30, 2003 3:29 am
Location: Sweden

Post by vigge89 »

just make a row/column with no background, no content and a fixed width/height, or, you can user this:

Code: Select all

style="background-color:transparent"
in your tabletag or whatever.
gavinbsocom
Forum Commoner
Posts: 71
Joined: Tue Sep 30, 2003 9:51 pm

Post by gavinbsocom »

for the row would be <td></td> ? or <tr><td></td></tr>
m3rajk
DevNet Resident
Posts: 1191
Joined: Mon Jun 02, 2003 3:37 pm

Post by m3rajk »

<tr></tr> is a row tag. in your css, have

tr{ background-color:transparent; }
Post Reply