CSS text-decoration属性

  • 定义和用法

    text-decoration属性指定添加到文本的装饰,并且是以下属性的简写属性:
    • text-decoration-line (必需的)
    • text-decoration-color
    • text-decoration-style
    特征 说明
    默认值 none currentcolor solid
    继承 没有
    动画 没有。CSS动画参考
    CSS版本 CSS1。CSS3有更新
    JavaScript语法 object.style.textDecoration="underline"尝试一下
  • 浏览器支持

    表中的数字指定了完全支持该属性的第一个浏览器版本。数字后跟-ms-, -webkit-,-moz-或-o-指定使用前缀的第一个版本。
    属性 IE/Edge Chrome FireFox Safari Opera
    属性名称
    text-decoration
    3.0
    1.0
    1.0
    1.0
    3.5
  • CSS语法

    text-decoration: text-decoration-line text-decoration-color text-decoration-style|initial|inherit;
  • 实例

    为<h1>,<h2>和<h3>元素设置不同的文本装饰:
    h1 {
     text-decoration: overline;
    }
    
    h2 {
     text-decoration: line-through;
    }
    
    h3 {
     text-decoration: underline;
    }
    
    h3 {
     text-decoration: underline overline;
    }
    
    尝试一下
  • 属性值

    属性值 描述
    text-decoration-line 设置要使用的文本修饰类型(如下划线,上划线,直线)
    text-decoration-color 设置文本修饰的颜色
    text-decoration-style 设置文本修饰的样式(如实心,波浪,点线,虚线,双)
    initial 将此属性设置为其默认值。查看initial关键字
    inherit 从其父元素继承此属性。查看inherit关键字
  • 相关页面

    HTML教程:HTML样式
    CSS教程:CSS文本