I have 3 div containers and I want first div container to be on left side and be as large in height as 2 containers on the right side, but the problem is that the containers on right side are not wrapped in one parent container. Basically what I want to do -
Is it even possible to do it without changing html structure? Or only possible solution would be to wrap those 2 elements in one parent container?
Here is my html structure -
<div class="container">
<div class="block1">text here</div>
<div class="block2">text here</div>
<div class="block3">text here</div>
</div>
Thank you for your help!