Probably this question was asked already but English is not my native language and I can't express my problem to search, also i search this in google about 1-2 hours. So please forgive me.
As you can see the buttons are not horizontally aligned because of different name lengths.
Here is my code;
<hr>
<div class="row column text-center">
<h2>Most Viewed Products</h2>
<hr>
</div>
<div class="row small-up-2 medium-up-3 large-up-6">
<% @mosts.each do |most| %>
<div class="column">
<%= image_tag most.avatar.url(:large), {:class => "thumbnail"} %>
<h8><%= link_to most.name, book_path(most) %></h8>
<p><%= number_to_currency(most.cost, unit:"") %> ₺</p>
<%= link_to 'Buy now!', book_path(most), {:class => 'button small expanded hollow', :style => 'float:left;'} %>
</div>
<% end %>
</div>
I'm using RoR at the back-end as you can see. Also, I'm using Foundation 6 for the front-end.
Since the div size is not absolute, I can't use margin. I tried several things but nothing works.