CLOSE

Help Us Help You

This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.

Textarea Tag

A <textarea> tag is used to create a large text input. Generally used with forms.

<textarea rows="4">Some text here.</textarea>

Attributes

  • cols - Width of the textarea.
  • form - ID of the form for this textarea.
  • maxlength - Max characters allowed.
  • name - Name of the textarea.
  • placeholder - Default text to display in the textarea.
  • readonly - Textarea is not editable. Contains read only content.
  • rows - Height of the textarea.

Copyright 2016 Step By Step HTML. All Rights reserved.