How would I achieve this layout with Bootstrap?
Box1 and Box2 should be stacked on the left and content Box3 should fill the remaining columns (width) and height of Box# should be equal to the total height of Box1 and Box2 (in other words I guess! height of Box3 should be equal to the row height...)
I am not sure what am I missing to get the layout!
My code:
.small-box {
background-color: gray;
border: 1px solid black;
}
.content-box {
background-color: lightgreen;
border: 1px solid black;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="col-md-4 small-box">
<div class="row col-md-12">
<div class="col-md-12">
<h1>box1</h1>
</div>
<div class="col-md-12">
<h1>box2</h1>
</div>
</div>
</div>
<div class="col-md-8 content-box">
<h1>box3</h1>
</div>
</div>
</div>
CSS
.small-box {
background-color: gray;
border: 1px solid black;
}
.content-box {
background-color: lightgreen;
border: 1px solid black;
}
2:
