// Personal website of Chris Smith

CSS » Text area resizing

To limit how text areas can be resized:

textarea {
  resize: vertical;
  resize: horizontal;
  resize: none;
}