I know it\'s possible to disable the resize of a textarea by using:
textarea
textarea { resize: none; }
But is it possible to disable e
You must use horizontal or vertical values for property.
resize: vertical;
or
resize: horizontal;
Source: https://www.w3schools.com/cssref/css3_pr_resize.asp