の場合には動作しない100%私が使用しているコードで、TEXTAREA幅:ここで絶対位置
HTML
<div class="chatbrd">
<div class="newmsg">
<form action="" method="post">
<textarea placeholder="type a message" type="text" name="msg" >
</textarea>
<button type="submit" name="newmsg" value="submit">send</button>
</form>
</div>
</div>
CSS
.chatbrd
{
height:800px;
position:relative;
overflow:auto;
max-height:200px;
border:1px solid black
}
.newmsg
{
position:absolute;
bottom:0;
max-width:600px;
}
.newmsg textarea
{
width:100%;
}
を参照してくださいIテキストエリアの幅が外側のdivの幅と等しくなるようにしたい bu私はくっついた。
https://jsfiddle.net/d7dyuf1k/2/ – Hackerman