問題
使用提供的方法使用Bootstrap 建立滾動選單導致滾動導致驅動選單在不擴展其容器時擴展其容器。如何解決此問題?
對於Bootstrap 5,請使用下列CSS:
.dropdown-menu { max-height: 280px; overflow-y: auto; }
或者,對於Bootstrap 3,加入以下CSS 和HTML:
.scrollable-menu { height: auto; max-height: 200px; overflow-x: hidden; }HTML
以上是如何使用 Bootstrap 建立可滾動式選單而不擴展其容器?的詳細內容。更多資訊請關注PHP中文網其他相關文章!