a:link {color: blue; text-decoration:none;} //未访问:蓝色、无下划线
a:active:{color: red; } //激活:红色
a:visited {color:purple;text-decoration:none;} //已访问:紫色、无下划线
a:hover {color: red; text-decoration:underline;} //鼠标移近:红色、下划线
<pre name="code" class="html"><a href="" style="text-decoration:none">电信</a> <a href=""style="text-decoration:none">网通</a>//去下划线
text-decoration参数:
none : 无装饰
blink : 闪烁
underline : 下划线
line-through : 贯穿线
overline : 上划线