无论我尝试什么,当我预览它时都没有链接但是当我进入我的实际网站时,下面有一条线。
<a href="https://www.test.com/" class="image-link"><img src="as.png" alt="test" height="236" width="420"> </a>
<p> ‌ test </p>
我的css在这里:https://pastebin.com/5c9dm0b0
我已经查阅了有关如何摆脱它的每个教程,但它仍然存在。
任何帮助都将不胜感激。
答案 0 :(得分:1)
使用:
a {
text-decoration: none!important;
}
答案 1 :(得分:0)
你的CSS文件中有第31行的额外}
删除并尝试
a {
text-decoration: none;
}