■ 定义
text-decoration属性规定添加到文本的修饰,可以给文本添加下划线,删除线,上划线等
■ 使用说明
属性值(固定值):
▶ none:默认,没有装饰线(最常用)
▶ underline:下划线,链接a自带下划线(常用)
▶ overline:上划线(几乎不用)
▶ line-through:删除线(不常用)
■ 示例
h1 {
text-decoration: none;
}
h2 {
text-decoration: underline;
}
h3 {
text-decoration: overline;
}
h4 {
text-decoration: line-through;
}
a {
text-decoration: none;
}
<h1>没有装饰线的标题</h1>
<h2>带下划线的标题</h2>
<h3>带上划线的标题</h3>
<h4>带删除线的标题</h4>
<a href="#">不带下划线的链接</a>