<!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=gb2312" />
<title>无标题文档</title>
<style type="text/css">
a:visited,a:link{
color:#000000;
}
.wo a:link{
color:yellow;
}
</style>
</head><body>
<span class="wo">
<a href="#">不错,不错</a>
</span>
</body>
</html>

解决方案 »

  1.   

    一样啊,chrome oprea ie firefox都一样 啊
      

  2.   

    我试了ie, chrome, firefox都是一样的。你是不是设置了浏览器里面的字体,没有用网页字体和样式,而是强制采用了浏览器自己的样式?
      

  3.   

    干脆用js得了
    <!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=gb2312" />
    <title>无标题文档</title>
    <script>
    function chColor(obj, t){
    if(t == 1)obj.style.color = "#000000"
    else obj.style.color = "yellow"
    }
    </script>
    </head><body>
    <span class="wo">
    <a href="#" onmouseover="chColor(this, 1)" onmouseout="chColor(this, 2)" style="color:yellow">不错,不错</a>
    </span>
    </body>
    </html>