CSS - 文本装饰

问题描述 投票:0回答:1

尽管给出了文本装饰选项“none”,下划线并没有消失

我尝试删除超链接文本的文本装饰。颜色和样式发生了变化,下划线仍然出现,文本装饰“无”被给出。

html css text underline text-decorations
1个回答
0
投票

您没有以正确的方式提出问题,至少添加一些代码以便其他人可以帮助您。 试试这个方法。希望如此,否则它会起作用,否则使用 !important 标签。

a {
      text-decoration: none;
    }

    /* Remove underline on hover and active states as well */
    a:hover, a:active, a:focus {
      text-decoration: none;
    }

© www.soinside.com 2019 - 2024. All rights reserved.