You are here : cssCSS 3overflow-y

overflow-y - CSS 3

The overflow-y property specifies what to do with the top/bottom edges of the content - if it overflows the element's 
	content area.Tip: Use the overflow-x property 
to determine clipping at the left and right edges.


Syntax

overflow-y: visible|hidden|scroll|auto|initial|inherit;


Example

div
	{
	   
	overflow-y: hidden;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference