去掉a标签的下划线
标签是一个超链接,它将被加下划线。
接下来,我们来看看如何去掉A标签的下划线。
操作方法 01
代码,可以看到链接下面加了下划线,如下图所示:
< a href = quot;https://www.sogou.com/quot; gt;souGo lt/a gt;
02
如下图所示编写一个样式表:
< style type = quot;text/CSS quot; gt lt/style gt;
03
然后编写如下图所示的超链接样式:
< style type = quot;text/CSS quot; gt
a {
text-decoration:none
}
lt;/style gt;
04
结果显示
超链接下划线已经去掉,如下图:
总代码:
< html gt;
lt;body gt
lt;head gt
lt;style type = quottext/CSS quot; gt
a{
text-decoration:无;
}
lt;/style gt;
lt;a href = quothttps://www.sogou.com/quot; gt;souGo lt/a gt;
lt;/head gt;
lt;/body gt;
lt;/html gt;