简体   繁体   English

具有扩展预览的Bootstrap +缩略图网格

[英]Bootstrap + Thumbnail Grid with Expanding Preview

I'm having issues trying to use this Thumbnail Grid with Expanding Preview with Bootstrap 3 html/css responsive grid : 我在尝试将此缩略图网格与Bootstrap 3 html / css响应网格的扩展预览结合使用时遇到问题:

http://tympanus.net/codrops/2013/03/19/thumbnail-grid-with-expanding-preview/ http://tympanus.net/codrops/2013/03/19/thumbnail-grid-with-expanding-preview/

Try to click on different images, images superimpose with the preview : http://bit.ly/1psqfM2 尝试单击不同的图像,图像与预览重叠: http : //bit.ly/1psqfM2

Anyone encountered the same problem and would have a solution ? 任何人都遇到相同的问题,将有解决方案吗?

Many thanks 非常感谢

Check if it works - change .og-grid li from: 检查是否有效-从以下位置更改.og-grid li

width: 25%;
float: left;
display: inline-block;

to

width: 24%; /* (or just use -box-sizing because current 25% + margin exceed size for 4 columns)  */
float: none;
display: inline-block;

More about box-sizing: http://css-tricks.com/box-sizing/ 有关box-sizing的更多信息: http : //css-tricks.com/box-sizing/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM