有以下几种方法可以去掉CSS超链接的下划线:
a {
text-decoration: none;
}
a {
text-decoration: none;
color: transparent;
}
a {
text-decoration: none;
color: #000000; /* 设置为与背景相同的颜色 */
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
请注意,以上方法可以单独使用,也可以结合使用,具体根据需求和设计来选择。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: css3如何实现多列布局