JavaScript HTML DOM Style textDecorationLine 属性

  • textDecorationLine 属性

    textDecorationLine属性设置或返回装饰将具有的行类型(如果有)。
    注意:您还可以使用textDecoration属性设置textDecorationLinetextDecoration属性是textDecorationLinetextDecorationStyletextDecorationColor属性的简写属性。
    注意:您还可以组合多个值,例如下划线和上划线,以在文本下方和上方显示线条。
    在顶部显示带有一行的段落:
    document.getElementById("myP").style.textDecorationLine = "overline";
    尝试一下
  • 浏览器支持

    IE/Edge Chrome FireFox Safari Opera
    属性
    textDecorationLine
    不支持
    57.0+
    36.0+
    6.0 Moz
    7.1 Webkit
    44.0+
  • 语法

    返回textDecorationLine属性:
    object.style.textDecorationLine
    设置textDecorationLine属性:
    object.style.textDecorationLine = "none|underline|overline|line-through|initial|inherit"
  • 属性值

    描述
    none 默认值。 不指定文本修饰的行
    underline 指定将在文本下显示一条线
    overline 指定将在文本上显示一条线
    line-through 指定将通过文本显示一行
    initial 设置这个属性为默认值。 阅读有关initial信息
    inherit 从其父元素继承此属性。 阅读有关inherit的信息
  • 技术细节

    项目 描述
    默认值: none
    返回值: 一个字符串,表示元素的text-decoration-line属性
    CSS版本 CSS3
  • 相关页面

    CSS参考:CSS 文本