I would assume you mean something like this.
<style type="text/css">
<!--
A:hover {text-decoration: none}
BODY { scrollbar-3d-light-color:#ccffff;
scrollbar-arrow-color:#ff9999;
scrollbar-base-color:660000;
scrollbar-dark-shadow-color:#ccffff;
scrollbar-face-color:#990000;
scrollbar-highlight-color:#ccccff;
scrollbar-shadow-color:#003366;
background-color: maroon}
a.italic:link { color: green; text-decoration: none }
a.italic:active { color: yellow; text-decoration: none }
a:italic:visited { color: green; text-decoration: none }
a.italic:hover { color: orange; text-decoration: underline; font-style: italic}
-->
</style>
"If at first you do suceed, try not to look astonished."
I have 50 gmail invitations at my disposal, if you want one pm me with your First and Last name and your email address HTTPGuru
It will work just fine, but you've got to use the class="" attribute in your <a> tags. For example, to get the styles for a.italic to appear in your <a> tags, you've got to use: <a href="..." class="italic">...</a>.
And that style will ONLY appear in <a> tags. You can't do something like <p class="italic"></p> and have the same affect. That's because of the tag selector before .italic.
a.italic: The boldface text is the tag selector. It tells the browser to ONLY apply this class to anchor tags (<a>).
the problem might also be that there isn't any love hate in your css. In otherwords: Link -> Visited -> Hover -> Active If you don't define them in that order, they won't work
Bookmarks