输入banner图图片脚本导航/分类

css删除线颜色怎么设置

在css中可以通过text-decoration属性设置删除线颜色,其设置语句如“text-decoration: line-through red;”,其中red参数则表示删除线的颜色。

本文操作环境:Windows7系统、css3版,DELL G3电脑

text-decoration 属性规定添加到文本的修饰,下划线、上划线、删除线等。

text-decoration 属性是以下三种属性的简写:

text-decoration-line
text-decoration-color
text-decoration-style

语法

/*关键值*/
text-decoration: none;                     /*没有文本装饰*/
text-decoration: underline red;            /*红色下划线*/
text-decoration: underline wavy red;       /*红色波浪形下划线*/
text-decoration: line-through red;             /*红色删除线*/
/*全局值*/
text-decoration: inherit;
text-decoration: initial;
text-decoration: unset;

属性值

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

underline 定义文本下的一条线。

overline 定义文本上的一条线。

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

blink 定义闪烁的文本。

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

推荐学习:《css视频教程》

以上就是css删除线颜色怎么设置的详细内容,更多请关注gxlcms其它相关文章!