CSS - OVERFLOW
Links
// OVERFLOW
overflow: visible; //default
overflow: hidden; //no visibility for content
overflow: auto; //hides the scroll bars if not needed
overflow: scroll; //adds scroll bars even if not needed
overflow-y: hidden;
overflow-x: hidden;