CSS设置文字中划线的方法主要有两种:使用CSS属性textdecoration:属性单词:textdecoration中划线值:linethrough示例代码:css.strikethrough {textdecoration: linethrough;}在HTML中应用这个CSS类:html原价:¥200.00现价:¥120.00使用HTML标签:标签:示例代码:html原价:¥200.00现价:¥120.00总结: ...
1、首先,打开html编辑器,新建html文件,例如:index.html。2、在index.html中的标签中,输入css代码:body{text-decoration: line-through;}。3、浏览器运行index.html页面,此时用css成功让文本添加了中划线。
1、CSS属性单词与代码 单词:text-decoration 中划线值 text-decoration:line-through 2、HTML中划线标签 S标签 被加中划线 二、文字中划线div css实例 文字加中划线实例zhx{ text-decoration:line-through}原价:¥200.00现价:¥120.00 效果如下:CSS设置 text-decoration:line-through...
1、给这个数字添加css属性:text-decoration: line-through;2、给这个数字添加标签:del。如:9999。text-decoration详解:text-decoration : none || underline || blink || overline || line-through none : 无装饰。text-decoration:none 无装饰,通常对html下划线标签去掉下划线样式。blink : 闪...
1、可以用CSS中的边框实现,border是设置边框的属性,有一个属性dotted就是点划线。具体的设置方法,首先新建一个html文件,在文件内写入一个div标签,给它一个class属性demo:2、设置demo的class样式,这里给demo一个宽度,表示点划线的长度,高度设为0,然后设置border-bottom的属性的边框样式为dashed点...