在HTML中怎么去掉超链接(标签 a)的下划线?_chelen_jak的博客-CSDN博客 https://blog.csdn.net/chelen_jak/article/details/25962665标签:下划线,标签,HTML,超链接,text,去掉 From: https://www.cnblogs.com/jmbt/p/16631300.html
<style type="text/css"> a:link,a:visited{ text-decoration:none; /*超链接无下划线*/ } a:hover{ text-decoration:underline; /*鼠标放上去有下划线*/ } </style> <a href="#">超链接</a>