-
CSS Style-sheet
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:
-
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
-
That works !! I didn't know that function:)