Fire and Ice
18
Q:

scroll in div

div{
	overflow : scroll;
}
6
<div id="" style="overflow:scroll; height:400px;">
4

div.ex1 {
  overflow: scroll;
  /*The overflow is clipped, but a scroll-bar is added to see the rest of the content*/
}

div.ex2 {
  overflow: hidden;
  /*The overflow is clipped, and the rest of the content will be invisible*/
}

div.ex3 {
  overflow: auto; 
  /*If overflow is clipped, a scroll-bar should be added to see the rest of the content*/
}

div.ex4 {
  overflow: visible;
  /*The overflow is not clipped. It renders outside the element's box. This is default*/
}
  
 
1

New to Communities?

Join the community