css text-decoration:none 不会删除文本下划线
css text-decoration:none won't remove text underline
我有一些带下划线的文本,但文本装饰:none 不会删除文本下划线。
您可以在我的网站 [此处] 的着陆页上看到。您会很容易找到它:它是着陆页上唯一带下划线的文本。
在第 182 行 style.css
中更改现有代码。
.game-link h5, .game-link p {
text-decoration: none !important;
text-decoration-color: var(--white-l);
}
至 ->>
.game-link h5, .game-link p {
text-decoration: inherit;
text-decoration-color: var(--white-l);
}
或
添加Css-
a.game-link {
text-decoration: none;
}
您是否尝试添加:
text-decoration: none!important;
我有一些带下划线的文本,但文本装饰:none 不会删除文本下划线。
您可以在我的网站 [此处]
在第 182 行 style.css
中更改现有代码。
.game-link h5, .game-link p {
text-decoration: none !important;
text-decoration-color: var(--white-l);
}
至 ->>
.game-link h5, .game-link p {
text-decoration: inherit;
text-decoration-color: var(--white-l);
}
或
添加Css-
a.game-link {
text-decoration: none;
}
您是否尝试添加:
text-decoration: none!important;