I am working on a fluid layout for a application where i want a fixed width & dynamic height of a div according to content of the parent div. Basically, i have a side navigation(side_nav) and 'data' div(app_forms) area where side navigation is having fixed width of 124px and remaining body area defined in %.
I am having 2 issues
Side nav height is not getting increased according to 'app_forms' div height
'apps_forms' div is breaking down when browser resized
Can someone help me on this, i have fiddled this.
<div class="app_body">
<div class="side_nav">
<ul>
<li ><a href="#" >Environments</a></li>
<li class="events"><a href="#">Events</a></li>
<li class="admin"><a href="#">Admin</a></li>
<li class="help"><a href="#">Help</a></li>
</ul>
</div>
<div class="app_forms">
<div class="datagrid">datagrid area</div>
<div class="info" >record info</div>
</div>
</div>