javascript – How do I style the corner of a textarea?

Question:

How do I change the angle of the textarea responsible for resize?

Answer:

Change – i.e. disallow resize ?
If so, like this:

  • resize: none – The element is not resized.
  • resize: both – The element can be resized horizontally and vertically.
  • resize: horizontal – You can only resize the element horizontally.
  • resize: vertical – You can only resize the element vertically.
  • resize: inherit – Inherits the value from the parent.
Scroll to Top