1818IP-服务器技术教程,云服务器评测推荐,服务器系统排错处理,环境搭建,攻击防护等

当前位置:首页 - 网站技术 - html/css - 正文

君子好学,自强不息!

如何设置文本下划线

2022-03-13 | html/css | gtxyzz | 803°c
A+ A-


每日笔记,文本小下划线。文本上横线,文本被花掉的线

文字装饰

text-decoration 属性用于设置或删除文本装饰。

text-decoration: none; 通常用于从链接上删除下划线:

实例

a {
  text-decoration: none;
}


其他 text-decoration 值用于装饰文本:

实例

h1 {
  text-decoration: overline;
}

h2 {
  text-decoration: line-through;
}

h3 {
  text-decoration: underline;

}


我上方有装饰线

我中间有装修线

我下方有装饰线


本文来源:1818IP

本文地址:https://www.1818ip.com/post/170.html

免责声明:本文由用户上传,如有侵权请联系删除!

发表评论

必填

选填

选填

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。