![]() |
VOOZH | about |
Bulma is a free, open-source CSS framework based on Flexbox. It is component rich, compatible, and well documented. It is highly responsive in nature. It uses classes to implement its design.
The Bulma textarea form element is the multi-line version of the input element. We will use <textarea> element with textarea class to create textarea element in Bulma.
Bulma Textarea States are used to set the different states of Textarea fields. There are many different states available for Textarea fields that are - normal, hovered, focused, loading, disabled, readonly, and fixed size. You can set the textarea states using the classes provided by Bulma.
Bulma Textarea States Classes:
Note: We can resize the loading snipers by adding is-small, is-medium or is-large class with the control class container.
Syntax:
<textarea class="textarea is-focused" placeholder="Focused textarea"> </textarea>
Disabled State: We will use HTML <textarea> disabled attribute to disable the textarea field.
Readonly: We will use HTML <textarea> readonly attribute to make the textarea field non-editable.
Example:
Output:
👁 Bulma Textarea StatesReference: https://bulma.io/documentation/form/textarea/#states