overflow hidden in css code example
Example 1: overflow hidden
overflow: hidden;
Example 2: overflow css
/* To solver overflow issue in IE,
always use properties separately,
do not use short hand */
div {
overflow-x: hidden;
overflow-y: auto;
}