温馨提示×

CSS text-decoration的作用是什么

css
小亿
151
2023-10-22 19:23:09
栏目: 编程语言

CSS的text-decoration属性用于设置文本的装饰效果,例如下划线、删除线、上划线等。它可以应用于文本(文字)和链接(超链接)。

常用的text-decoration属性值包括:

  • none:默认值,无装饰效果。
  • underline:添加下划线。
  • overline:添加上划线。
  • line-through:添加删除线。
  • blink:使文本闪烁(不推荐使用)。

此外,可以使用text-decoration属性的简写形式:

  • text-decoration-line:用于指定装饰线的类型。
  • text-decoration-color:用于指定装饰线的颜色。
  • text-decoration-style:用于指定装饰线的样式。

例如,可以使用以下代码为文本添加下划线效果:

text-decoration: underline;

或者使用以下代码为文本添加红色的删除线效果:

text-decoration: line-through red;

0