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?
Hope this helps
/* Hide scrollbar for Chrome, Safari and Opera */ ::-webkit-scrollbar { display: none; } /* Hide scrollbar for IE, Edge and Firefox */ html { -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ }