加上CSS语法控制

来源: 2004-03-07 04:41:45 [旧帖] [给我悄悄话] 本文已被阅读:

在<head>和</head>之间加上CSS语法控制:

<style type="text/css">
    a:link    { text-decoration: none; color: #009900 }
    a:active  { text-decoration: none; color: #ee0000 }
    a:visited { text-decoration: none; color: #660066 }
    a:hover   { text-decoration: underline overline; color: #000000}
</style>

改变高亮部分的值将影响链接的颜色。