hide scrollbar css if not overflow 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: hide scroll bar when not needed
overflow: auto;