html 如何删除代码中带下划线文本?[duplicate]

ltskdhd1  于 2022-12-16  发布在  其他
关注(0)|答案(4)|浏览(113)

此问题在此处已有答案

How to remove the underline for anchors(links)?(15个答案)
4个月前关闭。
enter image description here如何删除代码中的下划线文本?

bvjveswy

bvjveswy1#

在CSS文件或style代码中使用text-decoration : none ;标签。

xpcnnkqh

xpcnnkqh2#

给予你的标签,css属性:

text-decoration: none;
xmakbtuz

xmakbtuz3#

只是在你的css中使用

a {
   text-decoration: none;
}
mbskvtky

mbskvtky4#

尝试在你的css文件或<style>标记中实现它

a {
  text-decoration: none;
}

相关问题