CSS Alignment + Bootstrap

2

I'm using the bootstrap thumbnail but I do not find a bootstrap class to leave them inline;

I'm using this thumbnail.

and would like it to look exactly like it is in the example; I already tried to <div class="row"> put inline-block , inline and etc and nothing works.

    
asked by anonymous 12.08.2015 / 16:02

1 answer

2

The example repeats one column for each image. Each image must be inside a div with col-md - *:

<div class="row">

  <div class="col-xs-6 col-md-3">
    <a href="#" class="thumbnail">
      <img src="..." alt="...">
    </a>
  </div>

   <div class="col-xs-6 col-md-3">
    <a href="#" class="thumbnail">
      <img src="..." alt="...">
    </a>
  </div>

</div>
    
12.08.2015 / 16:06