以下のスクリーンショットでわかるように、リンクはdivの下部に配置されていません。 edit、delete、カートを追加のボタンをdivの下部に配置するにはどうすればよいですか。注tableは使用していません。
.bottomaligned {position:absolute; bottom:0; margin-bottom:7px; margin:7px;}
.fixedheight { height: 208px; position:relative; border:1px solid; margin:7px;}
以下にスクリーンショットが示されているページをレンダリングするテンプレートの関連ビットがここに貼り付けられます。 css class = "bottomaligned"を使用してもリンクが整列されないことに注意してください。 width:300px;をcssクラス。fixedheightに追加しても、まだ整列していませんでした。
<div class="row">
<% @products.each do |product| %>
<div class="col-lg-3 col-sm-4 col-6 fixedheight ">
<div class="bottomaligned">
<%= link_to 'edit', edit_product_path(product), class: "btn btn-danger" %>
<%= button_to "Delete", product, data: {confirm: 'Are u sure?'}, method: :delete, class: "btn btn-danger" %>
<%= button_to "Add to cart", order_items_path(product_id: product) %>
</div>
<hr>
</div><!-- /.col-lg-3 -->
<% end %>
</div><!-- /.row -->
スクリーンショット:
解決しました。新しいスクリーンショットをご覧ください。 bottomaligned、bottomrightおよびbottomleftの3つの異なるcssクラスを追加して、各リンクに異なるcssクラスを追加しました。
.bottomaligned {position:absolute; bottom:0; margin-bottom:7px; left: 0;}
.bottomright {position:absolute; bottom:0; margin-bottom:7px; margin:7px; right: 0;}
.bottomleft {position:absolute; bottom:0; margin-bottom:7px; left: 100px;}
.fixedheight { height: 200px; width: 243px; position:relative; border:1px solid;}
これがテンプレートの外観です。
<div class="col-lg-3 col-sm-4 col-6 fixedheight ">
<div>
<div >
<span class="bottomleft"><%= link_to 'edit', edit_product_path(product), class: "btn btn-danger" %></span>
<span class="bottomright"><%= button_to "Delete", product, data: {confirm: 'Are u sure?'}, method: :delete, class: "btn btn-danger" %></span>
<span class="bottomaligned"> <%= button_to "Add to cart", order_items_path(product_id: product) %></span>
</div>
<hr>
</div><!-- /.col-lg-3 -->
新しいスクリーンショット: