现在随便打开一个网站,它们的超链接都有这样一个效果:鼠标放在上头,超链接颜色变化,出现下划线,鼠标离开后,就会原来的样子.请问是用css控制的吗?怎么写来着,又怎么引用?谢谢
參考答案:放在<head>与</head>之间
<style type="text/css">
<!--
body,td,th {
font-family: 宋体;
font-size: 12px;
color: #000000;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #666666;
}
a:hover {
text-decoration: none;
color: #FF6600;
}
a:active {
text-decoration: none;
color: #000000;
-->
</style>