1,文本修饰
text-decoration属性是文本修饰的意思,它后可以带不同的值,不同的值能够表现出不同的效果
例1:众所周知,我们的超链接标签都会带有一条下划线,我们如果使用text-decoration: none的话,那么超链接的下划线就会消!
比如:text-decoration: none(表示去除文字的下划线) 效果如下:
text-decoration: underline(添加下划线) 效果如下:
text-decoration: overline(添加上划线) 效果如下:
text-decoration: line-through(添加删除线) 效果如下: