I have problem with irregular image gallery based on Bootstrap. Here's the design. http://alkoholeregionalne.pl/galeria11.jpg
I'm trying to set the red image's height equal with the height of the two rows of small yellow images, but when the width of the screen changes, the height's will shrink or grow unevenly.
I think it could be connected to the dimensions of each image.
Should I count it? I mean like "a" and "b" for red and "c" and "d" for yellow.
How can I make the the heights match like in the image?
<div class="row">
<div class="col-md-6">
<img src="red.jpg" />
</div>
<div class="col-md-6">
<div class="col-md-2">
<img src="yellow.jpg" />
</div>
<div class="col-md-2">
<img src="yellow.jpg" />
</div>
<div class="col-md-2">
<img src="yellow.jpg" />
</div>
</div>
</div>
NEW: I added on my first fiddle: here
On fiddle you've got to get larger left down window to see results for md/lg screen.