What CSS property specifies whether to clip the content or to add scrollbars when the content of an element is too big to fit in the specified area. code example
Example: overflow css
/* To solver overflow issue in IE,
always use properties separately,
do not use short hand */
div {
overflow-x: hidden;
overflow-y: auto;
}