我有這個CSS,因爲我有兩個與fixed
位置的靜態導航欄。 但#page
取得其內容的高度,而不是屏幕大小,因此它不滾動。頁面沒有采取100%的視圖高度
我已經嘗試過height:100vh;
的任何解決方案,使這一#page
採取的觀點,因此使得滾動有用的所有可用空間?
#page {
position: relative;
margin-top: 110px;
margin-left: 220px;
padding: 15px 15px 15px 15px;
height: 100%;
overflow: scroll;
}
導航欄
.navbar-right{
width: 220px;
left: 0;
top: 0;
margin-top:110px;
position: fixed;
}
.navbar-top{
border-bottom-color: #fe6803 !important;
border-bottom: 5px solid;
position: fixed;
height: 110px;
left: 0;
width: 100%;
}
你試過'身高:100vh;' – Hash
是@哈希,以爲我寫下來了,我會編輯帖子。但不起作用 –