Hi, i need apply two different hyperlink:hover style cause by different background color.
what i do is, i put css external link as
css style as
HTML code is
It is ignore paging class. who's know what's wrong is it?
what i do is, i put css external link as
Code:
a:hover.paging
{
color: #cc0000; text-decoration: none;
}
Code:
<style type="text/css">
A {color: #000099; text-decoration: none; }
A:hover {color: #FFFFFF; text-decoration: none; }
</style>
Code:
<TR> <TD> <a class="paging" > .... </TD> <TR>
Comment