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

CSS resize Property

 

 

The resize property is used to define how an element is resizable by the user if the user wants to resize it. It is not applicable to inline elements.

 

Default Value:-

 

Its default value is none.

 

Syntax:-

 

Its syntax is:- resize: none | both | horizontal | vertical | initial | inherit;

 

Further Explanation:-

 

Value Description
none The user cannot resize the element
both The user can resize both the height and width of the element
horizontal The user can resize the width of the element
vertical The user can resize the height of the element
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