problems with CSS and Safari

Joined
Oct 30, 2007
Messages
7
Reaction score
0
Points
1
Can someone tell me why Safari can't change the link color when clicked on the link (linked to an anchor?. IE and Firefox does. What do I have to do to force Safari to execute the CSS and change the link to green? Thankx

Paldo

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
<!--
a:visited {
color: #00FF00;
}
-->
</style></head>

<body>
<p><a href="#1">link to the anchor</a></p>

<p><a name="1" id="1"></a>hallo</p>
</body>
</html>
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top