html tutorial - How to disable resizable property of textarea using CSS - html5 - html code - html form



Answer: Use the CSS3 resize Property

    The resize property used to remove the default horizontal and vertical resizable property of the HTML <textarea> element. This property will hide the resizing handle at the bottom-right corner of the textarea.

    Example

      textarea {
          resize: none;
      }

      Related Searches to How to disable resizable property of textarea using CSS