I am working on an HTML project and I want to insert inside a page a box which inside has a list of element that scrolls within the box, without scrolling the page.
Is it possible to do that?
I am working on an HTML project and I want to insert inside a page a box which inside has a list of element that scrolls within the box, without scrolling the page.
Is it possible to do that?
Add .scrollable-ul class to your ul element and pick some height for it in CSS. Scroll is added via overflow-y: auto.
.scrollable-ul { overflow-y: auto; height: 60px; }
<ul class="scrollable-ul">
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<ul>