document.getElementById("myP").style.textDecorationColor="red"; 尝试一下 » 定义和用法textDecorationColor 属性规定文本修饰(下划线 underline、上划线 overline、中划线 line-through)的颜色。注意:只有在带有可见的 text-decoration 的元素上,textDecorationColor 属性才起作用。浏览...
HTML DOM中的Style textDecorationColor属性用于设置text-decoration的颜色,例如下划线,上划线和line-throughs。它还可以返回text-decoration颜色。 用法: 它返回textDecorationColor属性。 object.style.textDecorationColor 它用于设置textDecorationColor属性。 object.style.textDecorationColor= "color|initial|inherit" 属性...
document.getElementById("myP").style.textDecorationColor="red"; 尝试一下 » 定义和用法textDecorationColor 属性规定文本修饰(下划线 underline、上划线 overline、中划线 line-through)的颜色。注意:只有在带有可见的 text-decoration 的元素上,textDecorationColor 属性才起作用。浏览...
text-decoration: overline; } 删除线 实际在使用删除线时,不太推荐采用text-decoration来指定样式,而更推荐使用标签,用以标记要删除的内容。而它常常会与<ins></ins>标签(用来表示要插入的内容)配合使用 color属性 color属性实际控制了一个元素的前景色,包含了文本颜色和边框颜色一起,下面css代码可以看到边框颜色实...
text-decoration-color: red; text-decoration-style: solid; text-decoration-thickness: auto; } h2 { /* text-decoration-line: line-through; */ text-decoration-line: underline; text-decoration-color: blue; text-decoration-style: double;
text-decoration-color:color|initial|inherit; 属性值: color:设置文本装饰的颜色。语法: text-decoration-color:color; 例子: <!DOCTYPE html> <htmllang="en"dir="ltr"> <head> <metacharset="utf-8"> <title>text-decoration</title> <style> ...
1、颜色 color color:red; 2、文本缩进text-indant 属性值 num+px text-indant:10px; 3、文本修饰 text-decoration 属性值:underline下划线 none默认值 overline上划线 4、文本对齐方式 text-align 属性值 left right center justify(两端对齐) ——— width 宽 height高 属性值都是像素 任何一个标签默认都是...
一、color 文本颜色 二、text-align 文本对齐方式 三、line-height 行间距设置 四、text-indent 首行缩进设置 五、text-decoration 文本装饰设置 六、完整代码示例 代码 效果 一、color 文本颜色 color 属性 可以 定义 文本颜色 , 其颜色值有三种表示方式 : ...
<div style="text-decoration:line-through"> . . . </div> 此示例演示text-decoration是不可继承的。子级(SPAN 元素)似乎从其父级(DIV 元素)继承其样式,但事实上并未继承: 复制 <html> <head><style> div{color:red; text-decoration:underline;} span{color:blue; text-decoration:none;} </style> ...