Re: default.css

> Is there a way to use 2 different HREF styles in CSS on one page?
> for example, for the body content links to be 'blue', a certain
> paragraph to be 'red'?

Use a class.

in stylesheet:

 a:link {color: blue}
 p.red a:link {color: red}
     /* all links inside a <p> with class "red" will be red */

in document:

 <p>
 this is a normal paragraph. <A href="file.htm">blue link</A>
 </p>
 <p class="red">
 this paragraph is classified. <A href="file.htm">red link</A>
 </p>

Received on Thursday, 16 March 2000 18:38:14 UTC