CSS 控制链接变换

来源:互联网 发布:php入门到精通 pdf 编辑:程序博客网 时间:2024/06/03 19:42

a:link{ color:white;text-decoration: none;}

链接显示的颜色

a:hover {text-decoration:none;color:green;}

鼠标放上去时的效果

a:active {text-decoration: none;color:red ;}

点击时的效果

a:visited{text-decoration: none;color: white;}

点击后的显示效果

原创粉丝点击