[css-d] Can I make my link attributes differ by table?

2005-10-21 Thread James Crispino
I'm very new to CSS, and have been toying with the look and feel of my poker forum. One problem I have run into is when users post articles with links within the article, the link color is too light for the white background of the article text. I was wondering if I could set the link

Re: [css-d] Can I make my link attributes differ by table?

2005-10-21 Thread Adam Kuehn
James Crispino wrote: I was wondering if I could set the link attributes separately for links contained within a specific table. Certainly. Give your specific table an ID attribute, and then just use: #tableID a:link {color: myColor;} #tableID a:visited {color: myOtherColor;} If that