簡體   English   中英

防止滾動到ul li下拉列表之外

[英]Prevent scroll outside of the ul li dropdown

我有下面的代碼

https://plnkr.co/edit/LG8cOx?p=preview

我正在嘗試創建ul li的下拉菜單,在其中可以滾動並通過enter選擇元素。 現在,如果頁面高度更像我給出的示例,則ul li上的滾動也會滾動頁面。 我該如何預防?

.newMarginBottom {
  min-height: 1100px;
  border:1px solid red;
}

您應該使用max-height屬性

.newMarginBottom {
  max-height: 1100px;
  border:1px solid red;
}

更新1:

使用max-height:auto時可以解決箭頭鍵問題

更新的插頭

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM