html - Turn off textarea resizing -


I am trying to change the texture size in my site; Right now I am using this method:

  .textarea {clear: left; Minimum width: 267px; Max-width: 267px; Minute-height: 150px; Maximum height: 150px; }   

I know that my method is not correct and I am searching for a better one in javascript. I am making a start, so the best solution for me will be HTML5 or jQuery. .

Try this CSS to disable resizing

To resize all text, CSS looks like this:

  textarea {resize: none; }   

You can only put it in a Texter based on the name (where Teddera is HTML):

  textarea [name = foo] {resize : No one; }   

or id (where textarea is HTML):

  #foo {resize: none; }   

taken from:

Comments