html text-decoration,如何使用text-decoration

我们在网页里常常会使用使用CSS代码来对象文字内容加上下划线。那么我们就要用到text-decoration了 ,如何使用呢?今天我们给大家好好介绍一下。

使用CSS属性单词:

text-decoration : none || underline || blink || overline || line-through

text-decoration下划线CSS单词值参数:

none :  无装饰

blink :  闪烁

underline :  下划线

line-through :  贯穿线

overline :  上划线

text-decoration:none 无装饰,通常对html下划线标签去掉下划线样式

text-decoration:underline 下划线样式

text-decoration:line-through 删除线样式-贯穿线样式

text-decoration:overline 上划线样式

HTML常规下划线标签

在HTML u标签下划线标签“U”即可对对象文字加html下划线。

实例:我被U标签加下滑线

CSS控制对象下划线属性样式

html u下划线与CSS下划线对比应用案例

CSS去掉html标签划线样式

如果我们想去掉对应html中删除线s标签删除线样式、去掉html u下划线、去掉html上划线样式。

1、去掉html s删除线贯穿线样式

.p s{text-decoration:none}

去掉p类对象盒子里html s标签样式属性

2、去掉html u下划线样式

.p u{text-decoration:none}

你可能感兴趣的:(html,text-decoration)