You are here : cssCSS 3resize

resize - CSS 3

The resize property specifies whether or not an element is resizable by the 
user.Note: The resize property applies to elements whose computed overflow 
value is something other than "visible".


Syntax

resize: none|both|horizontal|vertical|initial|inherit;


Example

div {
	   
	resize: both;
	   
	overflow: auto;
}


Output / Return Value


Limitations


Alternatives / See Also


Reference