Reputation: 3788
I am trying to figure out how to deal with adding 'captions' to the Twitter bootstrap MEDIA GRID element. Here is an example: http://jsfiddle.net/vXMMA/73/
You will notice that the 'long' captions make the grid looks 'mis-aligned'. Any tips?
Upvotes: 0
Views: 1004
Reputation: 75389
Just define the li
elements as display:inline-block;
in your main css, like so:
.media-grid li {
display: inline-block;
vertical-align: top;
}
Upvotes: 1