A标签去除所有样式,定义文字颜色

/*包含以下四种的链接*/
a {
text-decoration: none;

}
/*正常的未被访问过的链接*/
a:link {
text-decoration: none;
color:#000000;
}
/*已经访问过的链接*/
a:visited {
text-decoration: none;
color:#000000;
}
/*鼠标划过(停留)的链接*/
a:hover {
text-decoration: none;
color:#000000;
}
/* 正在点击的链接*/
a:active {
text-decoration: none;
color:#000000;
}

posted @ 2022-05-01 14:03  79524795  阅读(82)  评论(0编辑  收藏  举报