css怎么去掉下划线

您所在的位置:网站首页 css取消下划线的属性设置 css怎么去掉下划线

css怎么去掉下划线

#css怎么去掉下划线| 来源: 网络整理| 查看: 265

css去掉下划线的方法:可以利用text-decoration属性来实现,如【text-decoration: none;】,属性值none表示没有文本装饰。

css怎么去掉下划线

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

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

基本语法:

/*关键值*/ 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视频教程)

代码示例如下:

php中文网(php.cn) 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怎么去掉下划线的详细内容,更多请关注php中文网其它相关文章!



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3