hide scrollbar without overflow hidden code example
Example 1: hide the scrollbar in css if not overflow
.myClass {
/*auto will remove and add the scroll bar as needed*/
overflow: auto;
}
Example 2: how to make scrollbar hidden
overflow: hidden;