web-dev-qa-db-ja.com

bootstrap-3 divの下部にあるリンクとボタンを揃える

以下のスクリーンショットでわかるように、リンクはdivの下部に配置されていません。 editdeleteカートを追加のボタンを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 -->

スクリーンショット:enter image description here

9
brg

解決しました。新しいスクリーンショットをご覧ください。 bottomalignedbottomrightおよび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 -->

新しいスクリーンショット:

enter image description here

20
brg