its been a while since ive had to do major css work, so im stuck
im trying to align a child div tag to the bottom or baseline of the parent div tag.
HTML
<div id="parentDiv">
<div class="childDiv"></div>
</div>
CSS
#parentDiv
{
width:300px;
height:300px;
background-color:#ccc;
background-repeat:repeat
}
#parentDiv .childDiv
{
height:100px;
width:30px;
background-color:#999;
}
All i want to do is have the child Div at the basline of the Parent Div, here is what it looks like right now...
Note i will have multiple childDiv's and they may all vary in height, and ill need them all to align to the baseline/bottom.
Thanks for all help