Quote:
|
Originally Posted by AnotherCoder CSS Applies in the following order: |
Thanks! I didn't know that.
Quote:
|
In regards to your incompatibility issue with Mozilla, you may want to create a container for your "a" element and assign it an "ID"
|
I got the same link color results in Firefox 2.0.0.6 on Windows and Maxthon2 (with IE 6 rendering engine) using the CSS she posted above untouched.
Julie, what are you seeing? Can you post the rest of your HTML (or a link to the page in question) to see if there is something else going on? Here is the test HTML I used that worked fine:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>link</title>
<style type="text/css"> a:link {
color: #1C3467;
text-decoration: underline;
}
a:visited {
color: #594B29;
text-decoration: underline;
}
a:hover {
color:#3076B6;
text-decoration: underline;
}
</style>
</head>
<body>
This is a <a target="_blank" href="http://www.thx.com/">link</a><br>
</body>
</html> Peace...