overflow css

CSS
div.ex1 {
  overflow: scroll;
}

div.ex2 {
  overflow: hidden;
}

div.ex3 {
  overflow: auto;
}

div.ex4 {
  overflow: visible;
}/* To solver overflow issue in IE,
always use properties separately,
do not use short hand */

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

Also in CSS: