Here is the HTML structure I am working with:
<div class="outer">
<div class="inner">
<a href="#"/>
<a href="#"/>
<a href="#"/>
</div>
</div>
This is the corresponding CSS:
div.outer{
position:relative;
height:177px;
width: 495px;
margin: 0 10px 0 10px;
overflow: hidden;
}
div.inner{
position: absolute;
}
I need to find a way to dynamically resize the outer div. Unfortunately, setting min-max heights doesn't seem to be effective in achieving this. Any suggestions would be greatly appreciated. Thank you!