2020-03-01
Resize any element
Most people knows that it's possible to resize a textarea.
Few people know that it's possible to add a resize handle to elements like divs.
div {
resize: both;
overflow: auto;
}
Most people knows that it's possible to resize a textarea.
Few people know that it's possible to add a resize handle to elements like divs.
div {
resize: both;
overflow: auto;
}
Comments