RE: default.css

many thanks!

-----Original Message-----
From: fantasai [mailto:fantasai@escape.com]
Sent: Thursday, March 16, 2000 3:31 PM
To: Liu, Jay; www-style@w3.org
Subject: 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 Friday, 17 March 2000 07:08:29 UTC