##[bootstrap]レイアウト下揃え
環境
Rails 5.2.4.4
bootstrap3
やりたいこと
col-lg-8のテーブルの下に合わせて、col-lg-3のテーブルを配置
show.html.erb
<div class="col-lg-8" style="position: relative;">
<table class="table">
...
</table>
</div>
<div class="col-lg-3">
<div class="absolute" style="position: absolute; bottom: 0;">
<table class="table">
...
</table>
</div>
</div>
col-lg-8のテーブルの横にcol-lg-3のテーブルが来て下揃えになると勘違いしていた。
col-lg-3を"position:relative;"
に変更して
col-lg-3の中で下揃えにしたら解決した。
show.html.erb
<div class="col-lg-8">
<table class="table">
...
</table>
</div>
<div class="col-lg-3" style="position: relative;">
<div class="absolute" style="position: absolute; bottom: 0;">
<table class="table">
...
</table>
</div>
</div>
ただの色々知識不足です。
勉強していきます。