CSSoverflow-y Property
Example
Show different overflow-y property values:
div.ex1 {
overflow-y: scroll;
}
div.ex2 {
overflow-y: hidden;
}
div.ex3 {
overflow-y: auto;
}
div.ex4 {
overflow-y: visible;
}
Try it Yourself »overflow-y: scroll;
}
div.ex2 {
overflow-y: hidden;
}
div.ex3 {
overflow-y: auto;
}
div.ex4 {
overflow-y: visible;
}
Definition and Usage
Theoverflow-y property specifies whether to clip the content, add a scroll bar, or display overflow content of a block-level element, when it overflows at the top and bottom edges.
Tip: Use theoverflow-x property to determine clipping at the left and right edges.
| Default value: | visible |
|---|---|
| Inherited: | no |
| Animatable: | no.Read aboutanimatable |
| Version: | CSS3 |
| JavaScript syntax: | object.style.overflowY="scroll"Try it |
Browser Support
The numbers in the table specify the first browser version that fully supports the property.
| Property | |||||
|---|---|---|---|---|---|
| overflow-y | 4 | 9 | 1.5 | 3 | 9.5 |
CSS Syntax
overflow-y: visible|hidden|scroll|auto|initial|inherit;
Property Values
| Value | Description | Demo |
|---|---|---|
| visible | The content is not clipped, and it may be rendered outside the content box. This is default | Demo ❯ |
| hidden | The content is clipped - and no scrolling mechanism is provided | Demo ❯ |
| scroll | The content is clipped and a scrolling mechanism is provided | Demo ❯ |
| auto | Should cause a scrolling mechanism to be provided for overflowing boxes | Demo ❯ |
| initial | Sets this property to its default value.Read aboutinitial | |
| inherit | Inherits this property from its parent element.Read aboutinherit |
Related Pages
CSS tutorial:CSS Overflow
HTML DOM reference:overflowY property

