What I am trying to do is align divs in another div from the bottom.. The code I have right now is :
#container{
height: 375px;
display: table-cell;
width: 660px;
vertical-align: bottom;
margin:none;
overflow-y:auto;
}
#container > div{
margin:none;
width:660px;
}
This seemed to work. But when the content inside the container div increased the height of container also increased though I have set a fixed height and overflow-y to auto. What should I do to make it work?
JsFiddle: http://jsfiddle.net/qNw7E/1/