Chrome is rendering the following code perfectly fine, but Firefox seems to be having trouble applying the hover effect.
HTML
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<title></title>
</head>
<body>
<div>
<a href="http://www.w3schools.com/cssref/pr_background-image.asp">
1 Link
</a>
</div>
</body>
</html>
CSS
a:Link {
text-decoration:none;
color:#008B45;
}
a:hover {
color:black;
}
a:visited {
color:#EE9A00;
}
Do you have any suggestions for resolving this issue?