I'm no expert on the matter, but I'm pretty sure the correct format is
a.note:hover {/* style declarations */}
It's been a long time since I looked at the W3C's spec on the matter,
but I think it's always supposed to be in the form of
<tag>.<class>:<pseudoclass>
--Jason
Henno Buschmann wrote:
> Hi,
>
>> a:hover.note {
>> color: #CC6600 ;
>> font-family: Arial, Helvetica, sans-serif ;
>> font-size: 10pt ;
>> font-weight: normal ;
>> text-decoration: underline
>> }
>
>
> That is the same as:
> a.note:hover { ...
>
> But i think it should be
> .note a:hover {
>
> Just thinking...
>
> regards,--
> Henno Buschmann * [EMAIL PROTECTED]
>
> Windows API Programmierung (Tutorials): http://www.win-api.de/
> return 0; // No error occurred
>