You are here : cssCSS 3overflow-x

overflow-x - CSS 3

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


Syntax

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


Example

div
	{
	   
	overflow-x: hidden;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference