How to restrict max textarea width and height in chrome or how to disable textarea resizing How to restrict max textarea width and height in chrome or how to disable textarea resizing google-chrome google-chrome

How to restrict max textarea width and height in chrome or how to disable textarea resizing


you can use :

resize: vertical; max-height: 200px;


You can also restrict to horizontal resizing only with:

resize: horizontal;

and only vertical resizing with:

resize: vertical; 


This is all a matter of CSS.To disable the resizing (drag thumb) just use resize: none;. To restrict size max(min)-width and height should do the trick.