Textarea
The textarea component is used to create a multi-line text input field.
Important: The textarea uses content to resize the height of the textarea. This is currently not supported in all browsers.
Attributes
rows
(int) - The number of rows to display. Default is3
.
Basic Usage
<aura:textarea label="Message">
Hello World!
</aura:textarea>
With Rows
<aura:textarea label="Message" rows="5" />
Disabled
<aura:textarea label="Message" disabled>
Hello World!
</aura:textarea>
© 2025 kolleg-essig. All rights reserved.