I've been looking at the Bootstrap docs but I can't seem to find the class that I need to make a certain effect happen. Is there a way to move/offset a div Row if the parent row has a column that pushes the bottom div down? Is this possible to achieve with bootstrap? I've attached an image of what I'm trying to accomplish along with the code.
<div class="container">
<div class="row">
<div class="col-sm-5" style="color: white; background:black; height: 100px">Something</div>
<div class="col-sm-7" style="color: white; background:red; height: 300px">something</div>
</div>
<div class="row">
<div class="col-sm-5" style="color: white; background:blue; height: 300px; position: top">something</div>
</div>