Answers for "make textarea not resizable width"

CSS
1

css textarea not resizable

-- CSS --
resize: none;

-- HTML --
<textarea style="resize: none;"></textarea>
Posted by: Guest on May-29-2021
0

make textarea not resizable

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; }
Posted by: Guest on August-09-2020

Code answers related to "make textarea not resizable width"

Browse Popular Code Answers by Language