Skip to content Skip to sidebar Skip to footer

Twitter Bootstrap Thumbnails Not Aligning Properly Anywhere But Chrome + Windows Xp

Ok so I'm prototyping a site for work and I have run into a small snag using the thumbnails as part of Twitter Bootstrap My issue is very easy to see and is applicable in every br

Solution 1:

Giving them height fixes it:

.thumbnails > li {
    float: left;
    margin-bottom: 18px;
    margin-left: 20px;
    height: 200px;
}

Solution 2:

I had this same issue recently, but I didnt want to fix the widths of the grid (not sure if thats what youre looking for?) But this is the amazing lib that got me around this VERY quickly and smoothly -

http://masonry.desandro.com/

Thanks,

Ash.

Post a Comment for "Twitter Bootstrap Thumbnails Not Aligning Properly Anywhere But Chrome + Windows Xp"