CSS Not working [Resolved]
This is really simple and working in my footer table but I dont see whats missing for the body of the table.
I have this CSS for the anchors but the underline and color change are not changing.
Code:
body
{
background-color: #333333;
color: #FFFFFF;
font-family: verdana, helvetica, arial;
font-size: small;
}
td .bodytd a:hover
{
font-family: verdana, helvetica, arial;
font-size: x-small;
color: #AEACAC;
text-decoration: underline;
}
td .bodytd a:link, td .bodytd a:visited, td .bodytd a:active
{
font-family: verdana, helvetica, arial;
font-size: x-small;
color=#FFFFFF;
text-decoration: none;
}
'...
<BODY>
<TABLE>
<TR>
<TD CLASS="bodytd">blah, <a href="About:Blank">blah</a>, blah...
Thanks
Re: CSS Not working [Resolved]
Order matters because of the 'order' in which hovers, visited, active and normal link are rendered.
Second,
td .bodytd seems wrong, because that implies an element of class bodytd inside a <td>
Re: CSS Not working [Resolved]
Ok, Thanks. If I wanted a class for a TD but not for all TDs then wouldnt I do a
Code:
TD .bodytd a:link
{
font-family: verdana, helvetica, arial;
font-size: x-small;
color=#FFFFFF;
text-decoration: none;
}
Re: CSS Not working [Resolved]
Re: CSS Not working [Resolved]
Oh, now I think I get it.
Thanks