Bootstrap Textarea Resize Disable Code Example


Example 1: disable textarea resize

textarea {   /* for all text* area elements */   resize: none; }  #foo {                  /* for particular id */   resize: none; }

Example 2: 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; }

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable