blueimp Gallery 无边框缩略图
blueimp Gallery borderless thumbnails
我在我的网站上使用 blueimp Gallery,但我的缩略图显示有白色边框。现场演示显示无边界,我应该改变什么以及在哪里?我尝试制作与演示 (86x86px) 相同大小的缩略图,但没有解决我的问题。我检查了所有 css,但没有找到相应的 class/id。
The live versions gallery (bottom of the page).
http://theprob.wha.la/sample/ <- 在这里上传了我网站的简单版本!
您可以将 float:left;
添加到 #link1
内的 a
元素。
#links1 a
{
float:left;
}
或者使用 display:inline-block;
并且不要忘记 remove space 这是由 display:inline-block;
发生的
#links1 a
{
display:inline-block;
vertical-align:middle;
}
我在我的网站上使用 blueimp Gallery,但我的缩略图显示有白色边框。现场演示显示无边界,我应该改变什么以及在哪里?我尝试制作与演示 (86x86px) 相同大小的缩略图,但没有解决我的问题。我检查了所有 css,但没有找到相应的 class/id。
The live versions gallery (bottom of the page).
http://theprob.wha.la/sample/ <- 在这里上传了我网站的简单版本!
您可以将 float:left;
添加到 #link1
内的 a
元素。
#links1 a
{
float:left;
}
或者使用 display:inline-block;
并且不要忘记 remove space 这是由 display:inline-block;
#links1 a
{
display:inline-block;
vertical-align:middle;
}