0
小提琴here如何讓一個元素溢出:當父元素溢出時爲auto:隱藏?
我試圖讓這個如果菜單是大於100%的高度,我可以在菜單中滾動,而不是在身體,直到菜單關閉。
當菜單打開我申請了以下內容:
body.menu-open {
overflow: hidden;
}
和菜單樣式:
.navbar .menu {
position: fixed;
width: 30%;
height: auto;
min-height: 150%; /* height greater than 100% */
overflow: auto;
top: 50px;
left: -30%;
background-color: DeepSkyBlue;
transition: left 0.2s ease-in-out;
}
這裏添加'max-height'是幹什麼用的?菜單隻能達到100%嗎? –
編號'max-height:100%'使滾動條出現,因爲菜單溢出了「.menu」的100%高度。請參閱片段。 –
哎呀!在我的個人項目中,我還必須在菜單中添加一個「padding-bottom:65px;」,以便在底部顯示最後一個菜單項。我有它'位置:固定; top:65px;'所以它一開始沒有顯示。 –