text-decoration

文本修饰语法:text-decoration:<值>允许值:none || underline || overline || line-through || blink
初始值: none适用于:所有元素向下兼容:
否文本修饰属性允许通过五个属性中的一个来修饰文本: underline(下划线)      
                         overline(上划线)
                         line-through(删除线)
                         blink(闪烁) ,
或缺省地使用。
例如,使用下列语句可以使连接不再有下划线:A:link,A:visited,A:active{
text-decoration: underline blink;
}
原文地址:https://www.cnblogs.com/taidou/p/text-decoration.html