1 选择需要应用属性的文本元素。2 设置 text-decoration-color 属性的值为颜色值。3 可以通过 CSS 变量和 RGBA 值来设置颜色。4 text-decoration-color 可以与 text-decoration-line 和 text-decoration-style 属性一起使用。注意事项 text-decoration-color 只能与 text-decoration-line 属性配合使用,不能单独使用。
CSS text-decoration-color 属性CSS 参考手册实例 改变下划线文本中下划线的颜色: p { text-decoration: underline; text-decoration-color: red; -moz-text-decoration-color: red; /* 针对 Firefox 的代码 */ } 尝试一下 » 浏览器支持几乎所有的主流浏览器都不支持 text-decoration-color 属性。
CSStext-decoration-color属性 CSS 参考手册 实例 改变下划线文本中下划线的颜色: p { text-decoration: underline; text-decoration-color: red; -moz-text-decoration-color: red; /* 针对 Firefox 的代码 */ } 尝试一下 » 浏览器支持 几乎所有的主流浏览器都不支持 text-decoration-color 属性。
版本CSS3 JavaScript语法object.style.textDecorationColor="red" 语法 text-decoration-color: *color* |initial|inherit; 属性值 值描述 color规定文本修饰的颜色 initial设置该属性为它的默认值 inherit从父元素继承该属性 浏览器支持 几乎所有的主流浏览器都不支持 text-decoration-color 属性 ...
一、color 文本颜色 二、text-align 文本对齐方式 三、line-height 行间距设置 四、text-indent 首行缩进设置 五、text-decoration 文本装饰设置 六、完整代码示例 代码 效果 一、color 文本颜色 color 属性 可以 定义 文本颜色 , 其颜色值有三种表示方式 : ...
一、color 文本颜色 二、text-align 文本对齐方式 三、line-height 行间距设置 四、text-indent 首行缩进设置 五、text-decoration 文本装饰设置 六、完整代码示例 ...
文本装饰-颜色 | text-decoration-color (Text Decoration) - CSS 中文开发手册 该text-decoration-color CSS属性设置由text-decoration-line属性所指定的线条的颜色。该颜色会应用于所有指定的线条。当一次设置多个线条装饰属性时,使用text-decoration简写属性可能会更方便。 1 2 3 4 5 6 7 8 9 10 11 /* <co...
text-decoration-color 装饰线的颜色 text-decoration-thickness 装饰线的粗细 由于text-decoration-thickness属性是在CSS4中加入,因此兼容性差一些,建议分开设置 text-decoration: wavy underline red; text-decoration-thickness: 3px; 1. 2. 【实战】下划线粘连的解决方案 ...
CSS text-decoration-color 属性 CSS text-decoration-color 属性用于设置文本修饰线的颜色,文本修饰线是通过 text-decoration-line 属性指定的。修饰线包括下划线、上划线、删除线和波浪线,波浪线的典型用途是标明内容拼写错误(仅举例)。被指定的颜色会作用到该属性值有效范围内的所有修饰线上。实例 把text-decoration...
csstext-decoration-color属性怎么用? text-decoration-color属性规定文本修饰(下划线underline、上划线overline、中划线line-through)的颜色。 注意:只有在带有可见的text-decoration属性的元素上,text-decoration-color属性才起作用。 语法: text-decoration-color:color|initial|inherit; ...