Railsビューに次のコードがあります。私は twitter-bootstrap を使用していますが、正しいフォーマットを取得するのに問題があります。画像に示すように、2 行目にギャップがあり、3 行目のすべてが 1 行目のすべてとわずかにずれています (2 行目に空白があるため)。私が望むのは、各行に 4 つのボックスです。何かアドバイス?
<div class = 'row-fluid'>
<div class = 'span12'>
<% @products.each_with_index do |(product),index| %>
<div class = 'span3'>
<center>
<a href = '/products/<%= product.id %>'>
<img style = 'width: 100px;' src = '/assets/logo/<%= product.slug.downcase %>-sq.jpg'>
</a><br />
<a href = '/products/<%= product.id %>'><%= product.name %></a>
</center>
</div>
<% end %>
</div>
</div>
<div class = 'row'></div>