去除下划线
<a style=" text-decoration: none;" href="#">我是下划线</a>
设置颜色
a:link {color: blue} /* 未被访问的链接 蓝色 */
a:visited {color: blue} /* 已被访问过的链接 蓝色 */
a:hover {color: blue} /* 鼠标悬浮在上的链接 蓝色 */
a:active {color: blue} /* 鼠标点中激活链接 蓝色 */
加类:
.div1 a:link, .div2 a:link {color: blue} /* 未被访问的链接 蓝色 */
.div1 a:visited , .div2 a:visited {color: blue} /* 已被访问过的链接 蓝色 */
.div1 a:hover, .div2 a:hover {color: blue} /* 鼠标悬浮在上的链接 蓝色 */
.div1 a:active , .div2 a:active {color: blue} /* 鼠标点中激活链接 蓝色 */