"Steve Pugh" <> wrote in message
news

...
> Michael Satterwhite <satterwh.X$NO$S$> wrote:
>
> >How can I independently control the color of the text and the underline
in a
> >stylesheet. Example, How could I make the text black and the underline
> >blue?
>
> Two ways, neither ideal:
>
> 1.
> a:link {color: black; background-color: white; text-decoration: none;
> border-bottom: 1px solid blue;}
>
> 2.
> a:link {color: blue; background-color: white;}
> a:link span {color: black; background-color: white;}
> <a href=""><span>link text</span></a>
<a href="">moo</a>
a{color:#000;border-bottom:1px solid #00f;text-decoration:none}
?
mark