我如何在父div的底部放置一個textarea並使textarea的寬度相同?父母div的底部有相同父寬度的位置固定元素
我現在面臨的問題是textarea一直擴展到頁面的右側。
的Html
html,
body {
height: 90%;
}
.container {
position: relative;
margin-left: 100px;
width: 500px;
height: 100%;
border: 1px solid red;
}
.middle {
position: absolute;
top: 20px;
left: 20px;
width: 100%;
height: 100%;
border: 1px solid blue;
}
.bottom {
position: fixed;
bottom: 0;
width: 100%;
}
<div class="container">
<div class="middle">
<p>
Textarea should be placed at bottom of the 'blue' div, with the same width
</p>
<textarea class="bottom" placeholder="Textarea..."></textarea>
</div>
</div>
這裏是我有問題的一個簡單的例子:https://jsfiddle.net/hu45v46p/1/
怎麼可以這樣用HTML和CSS來解決?