I am trying to place some images in two columns. One image in the left column and two images in the right column. The two images in the right column should have the same height as the image in the left. How can I achieve this ?
<div class="container">
<div class="row">
<div class="col-md-9">
<img class="img-responsive" src="img/2.jpg" alt="">
</div>
<div class="col-md-3">
<img class="img-responsive" src="img/4.jpg" alt="">
</div>
<div class="col-md-3">
<img class="img-responsive" src="img/4.jpg" alt="">
</div>
</div>
</div>
.hero-header{
position: relative;
}
.hero-headline {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}