Click to See Complete Forum and Search --> : CSS Style-sheet


frei
January 3rd, 2003, 10:01 AM
Hello

I've already a style-sheet and included among other things a tag for the links:
a:link { font-family: arial, helvetica, sans-serif; font-size: 10pt; text-decoration: none; color: #990066; }

Now I'd like another link with a font size of 8pt only. Is there a possibility to add an additional tag in the same css like:
a:link2........

Or does someone have another solution for that???:confused:

websmith99
January 3rd, 2003, 01:42 PM
Of course. You are not using the full power of CSS.

Give the specific link a CSS class:

<a href="foo.jsp" class="smallfont">my page</a>

Now add the class definition to the style sheet:

a.smallfont:link { font-family: arial, helvetica, sans-serif; font-size: 8pt; text-decoration: none; color: #990066; }

:D

frei
January 6th, 2003, 07:37 AM
That works !! I didn't know that function:)