I need help placing a textarea at the bottom of a fixed div:
<div id=msg>
<div id=content>
aaaaaaaannnnnnnnnn<br>
aaaaaaaannnnnnnnnn<br>
aaaaaaaannnnnnnnnn<br>
</div>
<div id=text>
<textarea></textarea>
</div>
</div>
css
#msg{
width:60%;
height:500px;
float:left;
background-color:#fff;
border:1px solid #000;
}
#content{
overflow-y: auto;
}
#text{
bottom:0;
position:fixed;
}
why is "bottom:0" not working as expected? http://jsfiddle.net/mu1tynax/