css文字下划线怎么设置

html-css011

css文字下划线怎么设置,第1张

用text-decoration设置

值  描述

none    默认。定义标准的文本。  

underline    定义文本下的一条线。  

overline    定义文本上的一条线。  

line-through    定义穿过文本下的一条线。  

blink    定义闪烁的文本。  

inherit    规定应该从父元素继承 text-decoration 属性的值。 

实例

设置 h1、h2、h3、h4 元素的文本修饰:

h1 {text-decoration:overline}

h2 {text-decoration:line-through}

h3 {text-decoration:underline}

h4 {text-decoration:blink}

text-decoration:underline下划线

text-decoration:overline上划线

text-decoration:line-through中划线

还有就是可以同时给一个元素这三种属性。

希望对你有帮助。