overflow css style code example
Example 1: overflow css
/* To solver overflow issue in IE,
always use properties separately,
do not use short hand */
div {
overflow-x: hidden;
overflow-y: auto;
}
Example 2: overflow-x hidden meaning in css
The overflow-x property specifies whether to clip the content,
add a scroll bar, or display overflow content of a block-level element,
when it overflows at the left and right edges.