- From: fantasai <fantasai@escape.com>
- Date: Thu, 16 Mar 2000 18:30:46 -0500
- To: "Liu, Jay" <Jay.Liu@nordstrom.com>, www-style@w3.org
> 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