css怎么去掉下划线样式
程序员文章站
2022-04-03 12:57:36
...
css去掉下划线样式的方法是,设置属性【text-decoration: none;】。如果我们要为文本添加样式,如红色波浪线,可以设置属性【text-decoration: underline red;】。
本文操作环境:windows10系统、css 3、thinkpad t480电脑。
如果我们要取消文本中的下划线样式,可以设置属性text-decoration: none,下面我们来介绍下text-decoration属性。
text-decoration 属性规定添加到文本的修饰,下划线、上划线、删除线等。
text-decoration: none; /*没有文本装饰*/ text-decoration: underline red; /*红色下划线*/ text-decoration: underline wavy red; /*红色波浪形下划线*/
举些例子:
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; }
学习视频分享:css视频教程
以上就是css怎么去掉下划线样式的详细内容,更多请关注其它相关文章!
推荐阅读
-
css 去掉i标签默认斜体样式
-
react中怎么写css样式?
-
PowerPoint超链接字体颜色修改、怎么去掉超链接下划线
-
请教:网站的这种样式怎么写出来的_html/css_WEB-ITnose
-
使用 CSS 去掉 iPhone 网页上按钮的超大圆角以及文本框圆角默认样式_html/css_WEB-ITnose
-
css样式ie6不能调用,ie78,ff都正常,怎么解决呀,急_html/css_WEB-ITnose
-
做这样的CSS文字阴影样式,该怎么做?_html/css_WEB-ITnose
-
symfony怎么用css来控制表单的样式?
-
CSS 如何去掉已定义的样式_html/css_WEB-ITnose
-
请问这种样式不用图片怎么实现,谢谢!_html/css_WEB-ITnose