Version: No
The overflow property allows you to select whether an over-sized element in a containing block is clipped or not. This property is not inherited.
A containing block is simply an element that contains related sub-elements. A problem arises if a sub-element is too big in size to fit inside the dimensions of the containing block. By default, when an element is too large to fit in the allotted space, portions will be chopped off so that the remaining portion of the element will fit inside the containing box. The portions that are chopped off are simply not displayed.
The clip property allows you to specify what portion of the over-sized sub-element will be visible. This is referred to as clipping the sub-element.
div.over {
overflow: scroll;
height: 100px;
width: 100px;
}
...
<div class="over">
<img src="/images/clouds.gif">
<img src="/images/clouds.gif">
<img src="/images/clouds.gif"><br />
<img src="/images/clouds.gif">
<img src="/images/clouds.gif">
<img src="/images/clouds.gif">
</div>