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.
アコーディオン プラグインを使用し、CSS と jQuery を変更しましたが、この質問のタイトルに記載されている結果を達成したいと考えています。基本的に、簡単な質問ですが、コンテンツの高さが最大高さよりも小さい場合、スクロール タブを削除するにはどうすればよいですか?
.info_inside { max-height: 100px; overflow-y: scroll; }
前もって感謝します。
auto代わりに使用scroll
auto
scroll
.info_inside { max-height: 100px; overflow-y: auto; }
w3schools: CSS3 オーバーフロー-y プロパティ