TMH
0
Q:

make textarea not resizable

textarea {
  resize: none;
}
12
You can either apply this as an inline style property like so: 
<textarea style="resize: none;"></textarea>
or in between 
<style>...</style> element tags like so: 
textarea { resize: none; }
0

New to Communities?

Join the community