关于html语言的问题?怎样改变超链接文本的颜色,且能去除下划线?希望有人指点一下?
a:visited{
color:#ffffff;
text-decoration: none;//无下划线
}//访问过后的颜色
a:link{
color:#ffffff;
text-decoration: none;
}//访问前的颜色
a:hover{
color: #0000FF;
text-decoration: underline;
}//鼠标放上去时的颜色
a:visited{
color:#ffffff;
text-decoration: none;//无下划线
}//访问过后的颜色
a:link{
color:#ffffff;
text-decoration: none;
}//访问前的颜色
a:hover{
color: #0000FF;
text-decoration: underline;
}//鼠标放上去时的颜色