Iam not sure if i have understood your problem correctly, but if you want your all the links to appear red:
In css: a { color:#FF0000; font-size: 12px;}
If you want all your links to appear Black when you place d cursor on it then:
a.hover { color: #000000;}
Avoid giving class to Links But if you have to, then gv specific class name to that hyperlink.
Iam not sure if i have understood your problem correctly, but if you want your all the links to appear red:
In css: a { color:#FF0000; font-size: 12px;}
If you want all your links to appear Black when you place d cursor on it then:
a.hover { color: #000000;}
Avoid giving class to Links But if you have to, then gv specific class name to that hyperlink.
eg:
<a class="one" href=" abc.com">
CSS for this would be:
a.one { color:#FF0000;}
hope this helps.. leme knw if ne errors...
the one you are suggesting is for the whole links in the entire document. What I am looking for though, is to know how can I do it for the links only in a certain div or table, NOT the entire document.
Bookmarks