I am just starting out with CSS. All has been going pretty smooth with the exception of one thing...hyperlinks.
Using an external css file, I put in:
a:link { color: #0000FF; text-decoration: underline; }
a:visited { color: #800080; text-decoration: underline; }
a:active { color: #cc0000; text-decoration: underline; }
a:hover { color: #cc0000; text-decoration: none; }
p.black {
margin-top: 10px;
margin-right: 10px;
margin-bottom : 10px;
margin-left : 10px;
color:#000000;
font-size: 8pt;
font-family: arial;
}
--------------------------
In my .html file I use the regular:
<p class=black>
"Appledore Engineering moves to Pease...
<a href = "moving.html">Click here to read the complete article</a>
</p>
Every other part of the css file is recognized, except for the hyperlinks....They either show a color that is part of IE's default for links, or they show something completely different.
Thanks for your assistance!




Bookmarks