css 下划线 删除线 上划线
text-decoration 属性
参数 | 介绍 |
---|---|
none | 无装饰 |
blink | 闪烁 |
underline | 下划线 |
line-through | 贯穿线 |
overline | 上划线 |
使用u
标签也可以达到下划线的目的
<u>u标签下划线</u>
使用csss属性
<span>text-decoration样式下划线</span>
span{
text-decoration:underline;
}
去掉html a元素的下划线
a{
text-decoration:none;
}
删除线
<span>text-decoration:line-through 删除线</span>
span{
text-decoration:line-through;
}
上划线
<span>text-decoration:overline 上划线</span>
span{
text-decoration:overline;
}