我不知道如何摆脱我的照片背后的随机线条。我的网站是http://spencedesign.netau.net/singapore-gallery.html,您可以看到图片背后有很少的线条,我看不出是什么原因造成的。
答案 0 :(得分:1)
你的问题来自:
a:-webkit-any-link {
color: -webkit-link;
text-decoration: underline; // this line is the problem
cursor: auto;
}
尝试做类似的事情:
.gallerycontainer a {
text-decoration: none;
}
这应该可以解决您的问题。
答案 1 :(得分:1)
您的链接,因为它们只有一个<img>
标记,正在加下划线。只需添加
a.thumbnail {
text-decoration:none;
}
给你的CSS。
答案 2 :(得分:1)
这些是空格,它们带有下划线,因为它们位于<a>
标记中,您可以删除空格或删除<a>