CSS Resize Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

The 'resize' property allows the author to specify whether or not an element is resizable by the user, and if so, along which axis/axes.

Syntax

resize: [value];

Possible values

  • none
  • both
  • horizontal
  • vertical
  • inherit

Initial Value

none

Applies To

elements with 'overflow' other than visible

Inherited

No

Media

Visual

Example

.class {
  overflow: auto ;
  resize: both ;
}


View All CSS Properties