I have a two divs inside a container div, and I want the img_box div to match the height of the content_con
div depending on how much height it has. So let it stay if the content_con
div has three paragraphs and that gives content_con
a height of 303 pixels; I want the img_box div to match that height. Make sense? How do I do that in CSS?
In short, img_box and content_con match the height depending on which one has the bigger height. See below to see a vis:
<div class="box_container">
<div class="img_box"></div>
<div class="content_con"><div>
</div>
.box_container
----------------------------------------------
|
.img_box | .content_con
|
----------------------------------------------