text-decoration 是一个CSS属性,用于设置文本的装饰效果,如下划线、删除线等。

常见的值包括:

  •  none:默认值,没有任何装饰效果。

  •  underline:在文本下方添加下划线。

  •  overline:在文本上方添加上划线。

  •  line-through:在文本中间添加删除线。

  •  blink:使文本闪烁,但这个值在现代浏览器中通常不被支持。


示例:
/* 去除链接的下划线 */
a {
  text-decoration: none;
}

/* 添加下划线 */
.underline-text {
  text-decoration: underline;
}

/* 添加上划线 */
.overline-text {
  text-decoration: overline;
}

/* 添加删除线 */
.strikethrough-text {
  text-decoration: line-through;
}

这些样式规则将应用于相应元素内文本的装饰效果。需要注意的是,text-decoration 还可以与其他属性一起使用,例如 color 和 font-weight 等。


转载请注明出处:http://www.zyzy.cn/article/detail/4248/CSS