I have a div A and another div B inside it. Using jquery i get data and insert into HTML() in div B, div A does not expand its length and div B overflows over the bottom.
Here is its CSS:
#A {
position:absolute;
top:30px;
left:0;
background-color: #FFFFFF;
width:920px;
display:block;
padding: 0 0 30px 0;
overflow:auto;
text-align:left;
}
.B {
display: inline-block;
*display: inline;
zoom: 1;
vertical-align: top;
width: 425px;
}