I have this element called items and the content inside the element is longer than the element height, I want to make it scrollable but hide the scroll bar, how would I do that?
<div class="left-side">
<div
class="items"
style="display:block;width: 94%;margin: 0 auto;overflow: hidden;"
>
</div>
</div>
.left-side {
height: 878px;
padding-top: 20px;
width: 1470px;
}
I tried setting the left-side class overflow to auto, but that didn't do anything.