在common.css文件里面添加一下样式:- a,a:link,a:visited,a:hover,a:active {color: #FF0;text-decoration: none;}
- a:hover{text-decoration: underline;}
复制代码 如果样式不是在common.css里的话
直接在页头添加也可以不过要加上style标签,如:
- <style type="text/css">
- a,a:link,a:visited,a:hover,a:active {color: #FF0;text-decoration: none;}
- a:hover{text-decoration: underline;}
- </style>
复制代码 说明:- #ff0 = 黄色 你可以修改它
- a,a:link,a:visited,a:hover,a:active 这些标签你可以分开设计
- text-decoration: none = 无下划线
- text-decoration: underline = 下划线
- a:hover{text-decoration: underline;}这段表示鼠标划过时显示下划线
复制代码 |