desperateSpider
Programmer
hi guys,
i'm usin' the followin' CSS to affect all the document:
<style type="text/css">
<!--
a:link, a:visited, a:hover {color:#ffffe5}
-->
</style>
it works, but i want one link in the document to have the color '000000', so how can i use the CSS inside the HREF tag to affect only this link, not all the document?!
to get my point, check this piece of HTML code:
<table>
<tr>
<td bgcolor="142A69"><a href="">Link 1</a></td>
<td bgcolor="142A69"><a href="">Link 2</a></td>
<td bgcolor="ffffe5"><a href="">Link 3</a></td>
</tr>
</table>
the problem with Link 3, the bgcolor is 'ffffe5' and i want the link color to be '000000'.
thanx for help.
i'm usin' the followin' CSS to affect all the document:
<style type="text/css">
<!--
a:link, a:visited, a:hover {color:#ffffe5}
-->
</style>
it works, but i want one link in the document to have the color '000000', so how can i use the CSS inside the HREF tag to affect only this link, not all the document?!
to get my point, check this piece of HTML code:
<table>
<tr>
<td bgcolor="142A69"><a href="">Link 1</a></td>
<td bgcolor="142A69"><a href="">Link 2</a></td>
<td bgcolor="ffffe5"><a href="">Link 3</a></td>
</tr>
</table>
the problem with Link 3, the bgcolor is 'ffffe5' and i want the link color to be '000000'.
thanx for help.