My situation involves a fixed size div that is 500px in dimensions. Inside this div, there is a smaller div. However, as the number of divs increases, it starts to display a horizontal scroll. I am aiming for a vertical scroll instead. I attempted to resolve this by using the following CSS:
width: 1509px;
overflow-x: hidden;
overflow-y: scroll;
Unfortunately, this solution did not work as expected. Any suggestions or guidance on how to achieve the desired outcome would be greatly appreciated!
Thank you in advance!