Resize
The resize CSS property sets if an element can be resized.
CSS Properties
resize
Sets if an element can be resized, and in which direction.
none— the element can't be resized (default)both— the element can be resized in both directionshorizontally— the element can be resized in the horizontal directionvertical— the element can be resized in the vertical direction
<textarea id="resize-example">
I can be resized in both direction!
</textarea>#resize-example {
resize: both
} | LIVE PREVIEW
References
- resize (MDN) — https://developer.mozilla.org/en-US/docs/Web/CSS/resize