'how to create a scroll down table

can someone help me to create a scroll down table like the menu bar at ebay.com, like when I click fashion it will show subcategories like this enter image description here , what I'm doing has only 2 subcomponents. this is my UX/UI enter image description here I also coded the homepage, here is the code link: https://github.com/tranluongtiensi/code_fe_2

create a scroll down table



Solution 1:[1]

that's a clickable dropdown menu , as you can see here https://www.w3schools.com/howto/howto_js_dropdown.asp

Either way you have the code to do it here!

<div class="dropdown">
  <button onclick="myFunction()" class="dropbtn">Dropdown</button>
  <div id="myDropdown" class="dropdown-content">
    <a href="#">Link 1</a>
    <a href="#">Link 2</a>
    <a href="#">Link 3</a>
  </div>
</div>

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Ryan M