css如何设置字体下划线
程序员文章站
2022-03-13 21:09:19
...
css设置字体下划线的方法:可以利用text-decoration属性来进行设置,如【text-decoration: underline;】。text-decoration属性用于规定添加到文本的修饰、下划线、上划线、删除线等。
属性介绍:
text-decoration 属性规定添加到文本的修饰,下划线、上划线、删除线等。
(视频教程分享:css视频教程)
语法:
/*关键值*/ 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 属性的值。
举例:
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如何设置字体下划线的详细内容,更多请关注其它相关文章!
上一篇: win10电脑突然没声音了怎么办
下一篇: css怎么设置超链接字体加粗效果
推荐阅读
-
关于css的字体设置font-famliy多值显示规则,微软雅黑侵权问题,微软雅黑不生效问题
-
如何实现文字下划线长度比文字实际长度长?_html/css_WEB-ITnose
-
如何设置网页中的一段文字,使它的宽度是页面宽度的62%且能自动换行?_html/css_WEB-ITnose
-
如何在td中控制字体右对齐 且加粗_html/css_WEB-ITnose
-
CSS下划线与文字间距,下划线粗细以及下划线颜色的设置
-
css如何设置不规则阴影
-
css如何设置br高度
-
css如何设置字体平滑
-
css如何设置背景图片的平铺方式?css设置背景图片平铺的方法(图文详解)
-
教你如何用CSS来控制网页字体的显示样式