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".
resize: none|both|horizontal|vertical|initial|inherit;
div { resize: both; overflow: auto; }