If I have a parent div with two child divs inside it, is it possible to set the parent div's height to auto, but only apply it to one of the child divs, while having the other child set to scroll for overflow-y?
For example, you can see the issue here: http://jsbin.com/equpor/2/edit
What I am asking is if it's possible to make div.one adjust its height based on div.two but ignore div.three?
Is there a proper solution for this problem? Thank you!
Edit: The content in div.three is generated by a PHP foreach loop from an XML file, so I need to be able to make changes to the XML without having to edit the HTML/CSS each time. Therefore, I need div.three to have a dynamic height.