Answers for "disbale resize of text area"

CSS
20

disable textarea resize

textarea {   /* for all text* area elements */
  resize: none;
}

#foo {                  /* for particular id */
  resize: none;
}
Posted by: Guest on July-06-2020
1

text area resize css

/* Enable resize in any element */
resize: both;
 resize: horizontal;
 resize: vertical;
/* Stop resizing a text area */

 resize: none;
Posted by: Guest on December-28-2021

Browse Popular Code Answers by Language