文章目录
什么是text-decoration 属性❓
text-decoration属性值
测试代码
实现效果
什么是text-decoration 属性❓
text-decoration 属性是指规定添加到文本的修饰
text-decoration 属性是以下三种属性的简写:
- text-decoration-line
- text-decoration-color
- text-decoration-style
text-decoration属性值
值 描述 none 默认。定义标准的文本。 underline 定义文本下的一条线。 overline 定义文本上的一条线。 line-through 定义穿过文本下的一条线。 blink 定义闪烁的文本。 inherit 规定应该从父元素继承 text-decoration 属性的值。
测试代码
text-decoration 下划线
删除线
闪烁效果,但浏览器不会显示
下划线
这是一个 链接,默认情况下链接是有下划线的,这边我们移除它。
上划线与下划线
实现效果