CSS Overflow Property

Description:
Specifies what's done with content that's greater than the content
area of an element.
Syntax:
overflow: [value];
Possible Values:
- visible
- hidden
- scroll
- auto
- inherit
Initial Value:
Visible
Applies To:
Block-level and replaced elements
Inherited:
No
Media:
Visual
Example:
blockquote {width: 150px; height: 65px; overflow: scroll;}





