サムネイルを行内で等間隔に配置しようとしています。それぞれがspan2で、240x240の画像があり、行はspan12です。だから私が6を持っているとき、それは完璧に見えます。私が5を持っているとき、それは最後の2つのスパンを空白のままにします。span2サムネイルの間隔を自動的に均等にして、行全体を等間隔で占めるようにするにはどうすればよいですか?
追加されたコード:
<div class="row-fluid">
<ul class="thumbnails">
<li class="span2">
<a href="#edithotelModal" class="thumbnail" data-toggle="modal">
<img src="http://placehold.it/240x240" alt="">
<h3>Room 1</h3>
<p> <%= Forgery(:lorem_ipsum).words(20) %></p>
</a>
</li>
<li class="span2">
<a href="#editroomtypeModal" class="thumbnail" data-toggle="modal">
<img src="http://placehold.it/240x240" alt="">
<h3>Room 2</h3>
<p> <%= Forgery(:lorem_ipsum).words(20) %></p>
</a>
</li>
<li class="span2">
<a href="#editroomModal" class="thumbnail" data-toggle="modal">
<img src="http://placehold.it/240x240" alt="">
<h3>Room 3</h3>
<p> <%= Forgery(:lorem_ipsum).words(20) %></p>
</a>
</li>
<li class="span2">
<a href="#managepricesModal" class="thumbnail" data-toggle="modal">
<img src="http://placehold.it/240x240" alt="">
<h3>Room 4</h3>
<p> <%= Forgery(:lorem_ipsum).words(20) %></p>
</a>
</li>
<li class="span2">
<a href="#manageextrasModal" class="thumbnail" data-toggle="modal">
<img src="http://placehold.it/240x240" alt="">
<h3>Room 5</h3>
<p> <%= Forgery(:lorem_ipsum).words(20) %></p>
</a>
</li>
</ul>
</div>