.div1 a:link {color: blue} /* 未被访问的链接 蓝色 */
.div1 a:visited {color: blue} /* 已被访问过的链接 蓝色 */
.div1 a:hover {color: blue} /* 鼠标悬浮在上的链接 蓝色 */
.div1 a:active {color: blue} /* 鼠标点中激活链接 蓝色 */
a:link {} 正常状态
a:visited {} 访问后的样式
a:hover {} 鼠标经过时的样式
a:active{} 点击时的样式