图像之间(不在图像之间)的蓝线

Mar*_*mer 2 html image hyperlink

我正在一个网站上工作:http://www.allaboutwinecellars.com

在其中一个画廊(Accesory页面)上,图片之间有蓝线,我不知道为什么,布局与第一页完全相同.

任何人都可以找出为什么那些线?

这是第一页(正确的):http://allaboutwinecellars.com/gallery.html

这是第二页(带蓝线的页面):http://allaboutwinecellars.com/gallery-2.html

编辑:我尝试添加outline:none;到我的锚标签CSS规则,它没有解决问题.

Jam*_*ill 5

问题是你的anchor标签.您需要显式设置text-decoration属性.您看到的行是表示超链接的蓝色下划线.看起来你已经定义了改变anchor行为的属性.只需添加到它:

a { 
    text-decoration: none;
    outline: none;
}
Run Code Online (Sandbox Code Playgroud)