<a href="http://www.baidu.com">百度</a>
实现效果:   运行时把“百度”下面的那横线去掉
             默认"百度"颜色为黑色,鼠标移过时显示红色
突然想搞搞这个

解决方案 »

  1.   

    <a style="color:black">CSS样式知道吗?
      

  2.   

    a:link,a:visited{font-family:宋体,Geneva,Arial,Helvetica,sans-serif;font-size:12px;color:#084981;text-decoration:none;}
    a:hover{font-family:宋体,Geneva,Arial,Helvetica,sans-serif;color:#ff6600;text-decoration:none;font-size:12px;}
      

  3.   

    <style type="text/css"> div.div a:link { color: #004000; text-decoration: none} 
    div.div a:visited { color: #00FFFF; text-decoration: none} 
    div.div a:hover { color: #008000; text-decoration: none} 
    div.div a:active { color: #008000; text-decoration: none} 
    --> 
    </style> 
      

  4.   

    只要能实现效果,立刻结贴给分。在线等。css,js都懂。要代码的
      

  5.   

    <style>
    a {
     color: black;
     text-decoration: none;
    }
    a:hover {
     color: red;    //鼠标经过时的颜色

    </style><a href="http://www.baidu.com">百度 </a> 10分,不太够分了