I want to create a fixed sized text area which cannot be dragged to change the size. How can I make a text area fixed size in Twitter Bootstrap
.
How can its size be fixed? By fixed size I mean fixed number of cols and rows.
I went through the documentation but didn't get any clue.
Add this to your CSS:
textarea { resize:none; }
or this for fixed width (and keep vertical resizing):
textarea { resize:vertical; }
Note that this is not supported by opera and internet explorer.