我有一個帶下拉菜單的邊欄菜單和需要滾動條的長列表。帶滾動條隱藏下拉菜單的邊欄菜單
我遇到的問題是滾動條不在屏幕上,或者由於overflow: hidden;
或兩者都隱藏了下拉菜單。
這裏是我的CSS:
/* I want dropdowns to be on the left */
.dropdown-menu {
top: 0;
left: -160px;
}
#rightbar {
position: fixed;
right: 0;
height: 100%;
background: lightgray;
width: 300px;
}
/* Normally, you'd do this, but this makes the dropdown not show; ALSO, the scrollbar is off the screen */
#wrap {
height:100%;
overflow:hidden;
}
#bottomStuff {
height: 100%;
overflow-y: auto;
}
https://jsfiddle.net/cp0fqyt9/
如何獲得下拉菜單和滾動條在position: fixed
側邊欄進行工作(無JS)?
#wrap {height:100%; overflow:hidden;}這裏隱藏的溢出隱藏了下拉列表 – Bosc
我知道,但是我怎樣才能讓'bottomStuff'包裝物成爲屏幕上留下的100%高度...這聽起來沒有JS。 – Jeff