I am experiencing some difficulty with a seemingly simple task.
My goal is to have the lime-colored background expand and fill 100% of the current height of its parent container (in this case, the magenta-colored section). Here is a live example:
https://jsfiddle.net/L973mmva/
Below is the code snippet:
<div style="width:100%;">
<div style="margin: 0 auto; width: 80%; background-color:magenta;">
<div style="display:inline-block; float:left; width:25%;">
<img src="http://www.bjbzryl.com/data/out/7/780401.jpg" style="width:100%;" />
</div>
<div style="display:inline-block; float:left; width:73%; margin-left:2%; background-color:lime;">
<p style="float:left; display:inline-block; margin:2% 2% 2% 2%;">blah blah blah</p>
</div>
<div style="clear:both;"></div>
</div>
</div>