关于text-decoration

关于text-decoration

作用:text-decoration属性规定添加到文本的修饰,下划线上划线删除线

text-decoration属性是以下三种属性的简写:

  1. text-decoration-line

  2. text-decoration-color

  3. text-decoration-style

1. text-decoration-line

  • solid (默认值。单线)
  • double (双线)
  • dotted (点状线)
  • dashed (虚线)
  • wavy (波浪线)
  • overline (上划线)
  • line-through (删除线)
  • underline (下划线)
  • initial (默认值)
  • inherit (继承)
  • none

2.text-decoration-color

3.text-decoration-style

注意:只有设置了 text-decoration-line才有效果

h1{
text-decoration:underline overline dotted red;
}
posted @ 2023-03-10 20:44  chichi0002  阅读(49)  评论(0编辑  收藏  举报