取消a标签默认下划线
您可以使用CSS来取消a标签的默认下划线,如下所示:
a {
text-decoration: none;
}
这将取消a标签的默认下划线。您还可以使用其他文本装饰属性来修改链接的外观,如下所示:
a {
text-decoration: none;
color: blue; /* 修改链接颜色 */
font-weight: bold; /* 修改链接字体粗细 */
}
原文地址: https://www.cveoy.top/t/topic/ca7l 著作权归作者所有。请勿转载和采集!