0

我无法在此页面上让我的图片站在我这边(分享和关注下方):

http://toddheymandirector.com/REEL/index_newlook_gallery2222.html

可疑代码:

#gallery ul div {
  min-width:26.6%;
  margin:0;
  float:left
  background-color:#595959;
}

有任何想法吗?

4

1 回答 1

0

在你的 css 文件中找到这个块:

img.a {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 10;
}

并将位置替换为相对:

img.a {
    left: 0;
    position: relative;
    top: 0;
    z-index: 10;
}
于 2012-04-14T18:57:21.300 回答