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 wrap Property

CSS overflow-wrap Property

 

 

The overflow-wrap property is used to determine whether or not the browser can break lines having long words, in case of overflowing the container.

 

Default Value:-

 

Its default value is normal.

 

Syntax:-

 

Its syntax is:- overflow-wrap: normal | anywhere | break-word | initial | inherit;

 

Further Explanation:-

 

Value Description
normal Long words will not break, even if they overflow the container.
anywhere Long words will break if they overflow the container
break-word Long words will break if they overflow the container
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