Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の高さのリストがあり、スクロールして残りを垂直に表示する必要があります。というわけでリスト に追加しました。 しかし、サブメニューは表示できず、水平スクロールバーが表示されました。 overflow-y: hidden;
overflow-y: hidden;
解決策はありますか? コードはこちら
.wrapper の幅を増やすだけです
.wrapper { margin: 20px; background: gray; color: white; width: 400px; height: 100px; /* I need overflow-y auto,but I also need to display the submenu*/ overflow-y: auto; overflow-x: visible; }