overflow hidden in css

CSS
/* To solver overflow issue in IE,
always use properties separately,
do not use short hand */

div {
  overflow-x: hidden;
  overflow-y: auto;
}div {
  width: 200px;
  height: 
50px;
  background-color: #eee;
  
overflow: visible;
} 
Source

Also in CSS: