只需要在css代码中增加a:visited属性即可,但是注意a属性的位置,link-visited-hover-active
<style>
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
color: #000000;
text-decoration: none;
}
a:hover {
color: #FF0000;
text-decoration: underline;
}
a:active {
color: #FF0000;
text-decoration: underline;
}
</style>
css控制点击超级连接后的颜色
本原创文章未经允许不得转载 | 当前页面:蒙面人生 » css控制点击超级连接后的颜色