text-decoration 属性用于在文本上添加装饰效果,其有效值包括:none:删除文本装饰underline:添加下划线overline:添加上划线line-through:添加横线blink:使文本闪烁(已不再支持)composite:组合多种装饰效果
text-decoration 属性值
text-decoration 属性允许在文本上添加各种装饰效果。其有效值包括:
1. none
删除文本上的所有装饰效果。
2. underline
在文本下方添加一条下划线。
3. overline
在文本上方添加一条上划线。
4. line-through
穿过文本中间添加一条横线。
5. blink
使文本闪烁,但大多数浏览器不再支持此效果。
6. composite
组合多种装饰效果,例如 text-decoration: underline overline;。
用法示例:
<p style="text-decoration: underline;"><u>这是下划线文本</u></p> <p style="text-decoration: overline;"><s>这是上划线文本</s></p> <p style="text-decoration: line-through;">~~这是横线文本~~</p>
以上就是text-decoration属性值都有什么的详细内容,更多请关注本网内其它相关文章!