目录

style textDecoration 属性

示例

设置元素的文本装饰:

document.getElementById("demo").style.textDecoration = "underline overline";
亲自试一试 »

描述

textDecoration 属性设置或返回文本的一种或多种装饰。

提示:要为一个元素指定多个装饰类型,请指定以空格分隔的装饰类型列表。


浏览器支持

Property
textDecoration Yes Yes Yes Yes Yes

语法

返回 textDecoration 属性:

object.style.textDecoration

设置 textDecoration 属性:

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

属性值

Value Description
none Defines a normal text. This is default
underline Defines a line under the text
overline Defines a line over the text
line-through Defines a line 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


技术细节

默认值: 没有任何
返回值: 一个字符串,表示添加到文本中的装饰
CSS版本 CSS1

更多示例

示例

返回元素的文本装饰:

alert(document.getElementById("demo").style.textDecoration);
亲自试一试 »

相关页面

CSS教程:CSS 文本

CSS 参考:文本装饰属性