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 に答える