我有一個包含另外三個的div一個div:標題,內容,頁腳DIV重疊粘頁腳
<div class="note">
<div class="header">Title</div>
<div class="content" contenteditable="true">Some content</div>
<div class="footer">Footer</div>
</div>
頁腳是總是在父div的底部。這裏是一些CSS:
.note {
position: relative;
width: 40%;
height: 200px;
overflow: hidden;
padding: 6px;
margin-top: 10px;
}
.note .footer {
position: absolute;
bottom: 0px;
}
.note .content {
overflow: hidden;
}
中間div用於文本輸入。問題在於,如果文本太多,它會重疊頁腳。我希望中間div是一個可滾動區域,它不會重疊頁腳。它可以通過設置該div的高度來完成,但這對我並不好 - 具有類「note」的div將可調整大小。我該怎麼做?
這裏工作plunker:http://plnkr.co/edit/Jhsn9EziMLs6IUCUg2ah?p=preview
將'overflow:scroll'添加到您的.note .content – Kiee
但它仍然重疊頁腳 – user1091733