Get started

Get the tools and building blocks to design and develop consistent and accessible experiences.

Start developing Start designing

Textarea

How to use a text area for multiline user input.

Guidance

Use a <textarea> when you want to collect more detailed, multi-line information (like comments or messages) from your users.


Textarea

HTML

<!-- Textarea -->
<label for="comment">Comment</label>
<textarea name="comment" id="comment"></textarea>