I'm making a form with react, and I need a textarea to 'fill' in with some information from the user. Although since it's limited to 255 characters, I'd like to limit it to not be resizable by the users. How do I do that?
Take a look at the following link: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
<textarea maxlength="255"></textarea>
textarea { resize: none; }
to prevent the re-sizing of the box.You don't need React for this.