PHP前端开发

css中怎么取消下划线

百变鹏仔 3个月前 (09-19) #CSS
文章标签 下划线
文本下划线可以通过 css 中的 text-decoration 属性取消:设置 text-decoration 为 none,从而取消所有文本装饰效果。将此样式应用到需要取消下划线的特定元素。

CSS 取消下划线

如何取消 CSS 中的文本下划线?

在 CSS 中,可以使用以下属性取消文本下划线:

text-decoration: none;

说明:

立即学习“前端免费学习笔记(深入)”;

示例:

要为段落元素中的文本取消下划线,请使用以下代码:

p {  text-decoration: none;}

注意:

p {  text-decoration: none !important;}