CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

CSS overflow x Property

CSS overflow-x Property

 

 

The overflow-x property is used to define whether to clip the content and add a scroll bar or display overflow content of a block-level element when it overflows at the left and right edges.

 

Default Value:-

 

Its default value is visible.

 

Syntax:-

 

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

 

Further Explanation:-

 

Value Description
visible The content is not clipped, and it is rendered outside the left and right edges.
hidden The content is clipped but no scrolling is provided.
scroll The content is clipped and a scrolling mechanism is provided
auto Should cause a scrolling mechanism to be provided for overflowing boxes
initial Sets this property to its default value.
inherit Inherits this property from its parent element.

Code Explanation

All Tutorials related to CSS Properties

All Sections related to CSS