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 max width Property

CSS max-width Property

 

 

The max-width property is used to specify the maximum width of an element. If the content is larger than the maximum width, it will overflow. However, it can be managed by overflow property. If the content is smaller than the maximum width, the max-width property has no effect.

 

Default Value:-

 

Its default value is none.

 

Syntax:-

 

Its syntax is:- max-width: none | length | initial | inherit;

 

Further Explanation:-

 

Value Description
none No maximum width.
length Defines the maximum width in px, etc.
% Defines the maximum width in percent of the containing block
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