在DW中选择“修改”--CSS样式表 新建一个 选择最后一项 设置link visted hover active 属性就可以了
首先给文字一个链接,在样式中写上a:hover{text-decoration:underline}
a:link {
text-decoration:none;
}
a:visited {
text-decoration:none;
}
a:hover {
text-decoration:none;
}
a:active {
text-decoration:none;
}