overflow
This property determines an element's behavior when its content doesn't fit into the space defined by the element's other properties. Possible values are visible, hidden, scroll, auto or inherit. By default, content will be visible, but a value of hidden will clip content that extends past the defined region size. A value of scroll adds scroll bars appropriately so content can be viewed.
Examples
#div1 {position: absolute; left: 20px; top: 20px;
width: 100px; height: 100px; overflow: scroll;}
#div2 {height: 100px; width: 100px; overflow: hidden;}
Browser and CSS Support Notes
CSS2
IE 4, 5, 5.5 (buggy), 6
Nav 4, 4.5-4.8 (buggy), 6, 7
Opera 4, 5, 6, 7
TIP Printing content in a region with overflow set to scroll can be troublesome.