text-decoration版本:CSS1 兼容性:IE4+ NS4+ 继承性:无
语法:
text-decoration : none || underline || blink || overline || line-through
取值:
none :? 默认值。无装饰
blink :? 闪烁
underline :? 下划线
line-through :? 贯穿线
overline :? 上划线
说明:
检索或设置对象中的文本的装饰。
有 href 特性的 a ,以及 u , ins 对象默认值为 underline 。
对象 strike , s , del ,默认值是 line-through 。
假如 none 值在属性声明的最后,所有的先前的其他取值都会被清除。例如,声明 text-decoration: underline overline blink none 等于声明 text-decoration: none 。
假如对象没有文本(如 img 元素)或者是空元素(如:E...[ 查看全文 ]