我一直在进行bootrap框架工作,我在图库部分使用Lightbox2。奇怪的部分是我的画廊在Google Chrome上运行良好,但在Firefox和Internet Explorer上运行不佳。它显示的是大图像而不是缩略图。帮帮我。
这是我的网站图库
http://hihschool.pancakeapps.com/gallery.htm
提前致谢

最佳答案

将来,将相关的html和css粘贴到您的问题以及Fiddle或Bin中。

将内联块更改为块:

/* Outline Outward */
.outline-outward {
  display: block;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

关于jquery - 用于 bootstrap 的Lightbox2在Firefox和Internet Explorer上不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25291132/

10-13 05:17