-2

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?

Kara
  • 6,115
  • 16
  • 50
  • 57
Andrea Foderaro
  • 45
  • 1
  • 1
  • 12

1 Answers1

0

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>
Mirous
  • 403
  • 7
  • 14