目录

style textDecorationLine 属性

示例

显示一个元素,其中有一条线穿过文本:

document.getElementById("demo").style.textDecorationLine = "line-through";
亲自试一试 »

描述

textDecorationLine 属性设置或返回装饰将具有的线条类型(如果有)。

笔记:您还可以使用 textDecoration 属性来设置 textDecorationLine,该属性是 textDecorationLine、textDecorationStyle 和 textDecorationColor 属性的简写属性。

笔记:您还可以组合多个值,例如下划线overline 在文本下方和上方显示线条。


浏览器支持

Property
textDecorationLine 57.0 79.0 36.0 7.0 Webkit 44.0

语法

返回 textDecorationLine 属性:

object.style.textDecorationLine

设置 textDecorationLine 属性:

object.style.textDecorationLine = "none|underline|overline|line-through|initial|inherit"

属性值

Value Description
none Default value. Specifies no line for the text-decoration
underline Specifies that a line will be displayed under the text
overline Specifies that a line will be displayed over the text
line-through Specifies that a line will be displayed through the text
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

技术细节

默认值: 没有任何
返回值: 一个 String,表示元素的 text-decoration-line 属性
CSS版本 CSS3

相关页面

CSS 参考:text-decoration-line 属性