我是靠谱客的博主 顺心金毛,这篇文章主要介绍css怎么去掉下划线,现在分享给大家,希望可以做个参考。

本文操作环境:windows10系统、css 3、thinkpad t480电脑。

可以使用text-decoration 属性来取消文本下划线,该属性规定添加到文本的修饰,下划线、上划线、删除线等。

基本语法:

复制代码
1
2
3
4
5
6
7
8
/*关键值*/ text-decoration: none; /*没有文本装饰*/ text-decoration: underline red; /*红色下划线*/ text-decoration: underline wavy red; /*红色波浪形下划线*/ /*全局值*/ text-decoration: inherit; text-decoration: initial; text-decoration: unset;
登录后复制

属性值:

  • none 默认。定义标准的文本。

  • underline 定义文本下的一条线。

  • overline 定义文本上的一条线。

  • line-through 定义穿过文本下的一条线。

  • blink 定义闪烁的文本。

  • inherit 规定应该从父元素继承 text-decoration 属性的值。

(学习视频分享:css视频教程)

代码示例如下:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>靠谱客(uoften.com)</title> <style> h1.under { text-decoration: underline; } h1.over { text-decoration: overline; } p.line { text-decoration: line-through; } p.blink { text-decoration: blink; } a.none { text-decoration: none; } p.underover { text-decoration: underline overline; } </style> </head> <body> <h1 class="under">下划线</h1> <p class="line">删除线</p> <p class="blink">闪烁效果,但浏览器不会显示</p> <h1 class="over">下划线</h1> <p>这是一个 <a class="none" href="#">链接</a>,默认情况下链接是有下划线的,这边我们移除它。</p> <p class="underover">上划线与下划线</p> </body> </html>
登录后复制

相关推荐:CSS教程

以上就是css怎么去掉下划线的详细内容,更多请关注靠谱客其它相关文章!

最后

以上就是顺心金毛最近收集整理的关于css怎么去掉下划线的全部内容,更多相关css怎么去掉下划线内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(155)

评论列表共有 0 条评论

立即
投稿
返回
顶部