On 7/12/05, Reese <[EMAIL PROTECTED]> wrote:
  a {
     color: #000099;
     text-decoration: underline;
     font: bold 10px Verdana, Arial, Helvetica, sans-serif;
     }
  a:hover {
    color: 990000;
    text-decoration: none;
    font: bold 10px Verdana, Arial, Helvetica, sans-serif;
    }

> 
> I'm trying to give a specific link a different style, but this
> code:
> 
> 16.  #alt a:link {blah}
> 
> and this code:
> 
> 16.  div#alt a:link {blah}
> 

Try this:
a.alt:link, a.alt:visited {blah}
a.alt:hover {blah}

And then assign your "different" link the "alt" class <a class="alt"...

HTH,

Jon
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to