Vertical Gaps Appearing - jQuery Masonry - (seamle

2019-02-27 22:56发布

This question has already been asked in a different situation.

I am trying to achieve a seamless photo grid with jQuery Masonry.

Check out my fiddle:

http://jsfiddle.net/drw158/sAkjv/

There is a vertical gap. Why?

3条回答
beautiful°
2楼-- · 2019-02-27 23:14

You should make the <img/> a float.

查看更多
唯我独甜
3楼-- · 2019-02-27 23:21

Display your images as block-level elements:

.ct-coll-item img {
  display: block;
}

See if this works: http://jsfiddle.net/drw158/sAkjv/1/

As for the why, I have no idea. My guess would be because the images are inline elements, but that isn't a direct explanation.

查看更多
太酷不给撩
4楼-- · 2019-02-27 23:34

The problem is your doctype. Change it to XHTML 1.0 Transitional then everything is fine

查看更多
登录 后发表回答