<style type="text/css"> a:link,a:visited{ text-decoration:none; /*超链接无下划线*/ } a:hover{ text-decoration:underline; /*鼠标放上去有下划线*/ } </style> <a href="#">超链接</a>
在HTML中怎么去掉超链接(标签 a)的下划线?
最新推荐文章于 2025-04-14 08:45:35 发布
<style type="text/css"> a:link,a:visited{ text-decoration:none; /*超链接无下划线*/ } a:hover{ text-decoration:underline; /*鼠标放上去有下划线*/ } </style> <a href="#">超链接</a>