简体   繁体   中英

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 :

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

Anyone encountered the same problem and would have a solution ?

Many thanks

Check if it works - change .og-grid li from:

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/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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