搜索

CSS怎么给数字中间加一横线

发布网友 发布时间:2022-02-26 09:27

我来回答

3个回答

热心网友 时间:2022-02-26 10:56

2种方法:

1、给这个数字添加css属性:text-decoration: line-through;

2、给这个数字添加标签:del。如:<del>9999</del>。

text-decoration详解:

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

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

blink :  闪烁

underline :  下划线。text-decoration:underline 下划线样式。

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

overline :  上划线。text-decoration:overline 上划线样式。

扩展资料:

我们进行对3个盒子对象分别设置对象内文字下划线、文字删除线样式、字体上划线样式。

1、css代码片段:

.divcss5{text-decoration:underline} 

.divcss5_1{text-decoration:line-through} 

.divcss5_2{text-decoration:overline} 

2、html代码片段:

<div class="divcss5">我被加下划线</div> 

<div class="divcss5_1">我被加贯穿删除线</div> 

<div class="divcss5_2">我被加上划线</div>

热心网友 时间:2022-02-26 12:14

text-decoration:line-through;可以为元素增加删除线,也就是为文字中间增加一条横线

例如,有如下的div

<div class="line-through">123456</div>

如果需要添加横线,则可以为line-through添加属性:

.line-through{
    text-decoration:line-through;
}

另外,如果使用del标签,浏览器默认样式会添加删除线,del标签的默认样式就是text-decoration:line-through;

热心网友 时间:2022-02-26 13:49

.line_m{text-decoration:line-through}

然后调用这个样式即可
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com
Top