In general I have three divs with tables in them, each cell has a link in each of these tables, and each div has an ID..
<div id="one"> <table> <tr><td><a href="">One</a></td></tr> </table> </div>
x3...
my css is simple enough
#one table tr td a:stuffs { color:#fff; } #two table tr td a:stuffs { color:#000; } #three table tr td a:stuffs { color:#fff; }
simply put, Firefox is the only browser that's turning all of my links white.. if I change the color in #three to black, they all turn black, or if i take the entire section for #two and move it to the bottom of the css file, they all turn black, however all of my hover's are the correct color for the div they are inside of...
anyone know a common issue with this or have a clue right off without me posting the 500 lines? I'm willing to hear any debug suggestions also. Thanks guys