JavaScript HTML DOM Style textDecoration 属性
-
textDecoration 属性
textDecoration属性为文本设置或返回一个或多个装饰。提示:要为元素指定多个装饰类型,请指定以空格分隔的装饰类型列表。设置p元素的文本修饰:
尝试一下document.getElementById("myP").style.textDecoration = "underline overline";
-
浏览器支持
项 IE/Edge Chrome FireFox Safari Opera 属性 textDecoration 支持支持支持支持支持 -
语法
返回textDecoration属性:object.style.textDecoration设置textDecoration属性:object.style.textDecoration = "none|underline|overline|line-through|blink|initial|inherit" -
-
技术细节
项目 描述 默认值: none 返回值: 一个字符串,表示添加到文本中的装饰 CSS版本 CSS1 -
-