I want to put a textarea in the bottom of a div (and fixed there):
<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 bottom:0 not working? http://jsfiddle.net/mu1tynax/