建站常识

CSS 点击链接过后为什么不变颜色

发布时间 | 2014/5/28  点击 | 

设置a标签的属性呀

a:link {color: blue}     /* 未被访问的链接
a:visited {color: blue}  /* 已被访问过的链接
a:hover {color: blue}    /* 鼠标悬浮在上的链接
a:active {color: blue}   /* 鼠标点中激活链接设置

link和visited的颜色一样就好了注意顺序不能乱哦,否则会失效的

多链接的设置方法
a.new:link {color: blue}     /* 未被访问的链接
a.new:visited {color: blue}  /* 已被访问过的链接
a.new:hover {color: blue}    /* 鼠标悬浮在上的链接
a.new:active {color: blue}   /* 鼠标点中激活链接

相关信息