The scenario is simple, my goal is to stretch the left div to the right div's height
to
the code, I'm using bootstrap
<div class="row">
<div class="col-6">
<input placeholder="left div" />
</div>
<div class="col-6">
<input placeholder="" />
<input placeholder="" />
<input placeholder="" />
<input placeholder="right div" /> /* This is the right div */
<input placeholder="" />
</div>
</div>
I'm not sure whether to use CSS or javascript to do this.