CSS去掉链接下划线的方法

a:link {text-decoration: none}


  • text-decoration还有以下几种取值:

    none 默认。定义标准的文本。 
    underline 定义文本下的一条线。 
    overline 定义文本上的一条线。 
    line-through 定义穿过文本下的一条线。 
    blink 定义闪烁的文本。 
    inherit 规定应该从父元素继承 text-decoration 属性的值。 

    去掉下滑线,也就是将text-decoration的值设为 none;如果想要再加上下划线,那就将text-decoration值设为underline;还有其它的几种情况就自己试一下。


你可能感兴趣的:(HTML/CSS,网页技巧)