0
我有一個任務是建立一個邊欄,其高度等於內容。 內容越多,側邊欄就越大。如何使邊欄高度取決於內容高度?
實際上,我的側欄等於窗口大小,而不是內容。如果我向下滾動頁面,則沒有側欄。
這是我的代碼:
HTML:
<div class = "container" style = "height :100%">
<div class = "row" style = "height:100%">
<div class = "col-md-3 hidden-xs hidden-sm" style = "height:100%">
<div class = "sidebar">
.........
</div>
</div>
</div>
</div>
CSS:
html .sidebar,
body .sidebar {
height: 100%;
width: 100%;
background: black;
}
爲什麼?怎麼做才能使它工作?
太感謝你了)一切正常) – Aleks339
不用擔心,請接受作爲正確答案@ Aleks339 :) – tallent123