我正在寻找如何从HTML的下划线中删除下划线
我尝试过此操作,但不知道将其放置在此行中的位置。 (我不是开发人员)
<a href="%%unsubscribe%%"><span style="color:#15BECE;">Unsubscribe</span></a> from email communications<br>
答案 0 :(得分:0)
您可以使用CSS来做到这一点。
在<head>
(或.htm
)文件的.html
标记中,添加以下代码:
<style>
a {
text-decoration: none;
}
<style>
要添加更多样式,可以在标记上使用样式:
<style>
a:link {
/*a normal <a> tag*/
text-decoration: none;
color: value;
}
a:hover {
text-decoration: underline;
color: /*Your desired color when cursor is on the link*/;
}
a:visited {
text-decoration: none;
color: /*Your desired color when link is clicked and visited*/;
}
a:active {
text-decoration: underline;
color: /*Your desired color when link is clicked*/;
}
<style>
答案 1 :(得分:0)
谢谢大家!! 这一点解决了我的问题。我知道这是新手,感谢您的帮助!
<a style="text-decoration:none"><span style="color:#15BECE">Unsubscribe</span></a> from email communications</p>