租用问题

质量为本、客户为根、勇于拼搏、务实创新

< 返回租用问题列表

CSS text-decoration的有哪些作用

发布时间:2023-10-22 19:23:09

CSS text-decoration的有哪些作用

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;