overflow hidden not working scroll code example
Example 1: overflow-x hidden not working
#wrapper {position: absolute; width: 100%; overflow-x: hidden}
Example 2: hide the scrollbar in css if not overflow
.myClass {
/*auto will remove and add the scroll bar as needed*/
overflow: auto;
}