When to use this component

Use the textarea component when you need to let users enter an amount of text that’s longer than a single line.

Formatted example

Do not include personal or financial information.

HTML code
<label for="more-detail">
Can you provide more detail?
</label>
<p id="more-detail--hint" class="hint">
Do not include personal or financial information.
</p>

<textarea id="more-detail" name="more-detail" rows="5" aria-describedby="more-detail--hint"></textarea>