摘要:怎么取消网站所有连接下划线 如果针对单个网页,可以把如下代码放入页面头部head/head中。 style type=text/cssa{ text-decoration:none;}a:hover{ text-decoration:underline;}/style 如果是针对整个网站,可
怎么取消网站所有连接下划线
如果针对单个网页,可以把如下代码放入页面头部<head></head>中。
<style type="text/css">a{ text-decoration:none;}a:hover{ text-decoration:underline;}</style>
如果是针对整个网站,可把代码
a{ text-decoration:none;}
a:hover{ text-decoration:underline;}
存为一个CSS文件,
然后在各网页头部引用:
<link href="CSS文件路径/CSS文件名" rel="stylesheet" type="text/css" />
标签:
没有tag
网站下划线