当鼠标悬停在超级链接显示下划线

来源:百度知道 编辑:UC知道 时间:2024/05/22 14:08:54
那位高人帮下手:当鼠标悬停在超级链接上显示下划线并自动变色,而在此前已经用代码去除过下划线的了(a {text-decoration: blink})!

使用CSS解决
代码如下,放在<head>之间
<style type="text/css">
<!--
a:link {
color: #330099;
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #FF0000;
}
a:active {
text-decoration: none;
}
-->
</style>