千锋前端浠浠呀老师HTML+CSS教程,零基础web前端开发入门必看视频

css 文本修饰
1为文本添加装饰线 text-decoration-line属性
overline:在文本上方添加
line-through:在文本中间添加线条修饰
underline:在文本下方添加线条修饰
2文本设置装饰的颜色通过text-decoration-color:red/rgb/#fff属性
3text-decoration-style:solid(实线)double(双实线)dotted(圆点线)dashed(虚线)
wavy(波浪线)
4text-decoration-thickness属性设置厚度
auto 默认值 px %
5简写:text-decoration:underline red double 5px
6 给a添加text-decoration:none可以去除下划线