Default text area
This is the input's helper text.
<div class="ecl-form-group"><label for="example-textarea-id-1" id="example-textarea-id-1-label" class="ecl-form-label">Label<span class="ecl-form-label__optional" role="note" aria-label="optional">(optional)</span></label> <div class="ecl-help-block" id="example-textarea-id-1-helper">This is the input's helper text.</div><textarea id="example-textarea-id-1" class="ecl-text-area ecl-text-area--m" rows="4" placeholder="Placeholder text" aria-describedby="example-textarea-id-1-helper"></textarea> </div>
Try it yourself on the playground
PlaygroundDisabled text area
This is the input's helper text.
<div class="ecl-form-group"><label for="example-textarea-id-1" id="example-textarea-id-1-label" class="ecl-form-label ecl-form-label--disabled">Label<span class="ecl-form-label__optional" role="note" aria-label="optional">(optional)</span></label> <div class="ecl-help-block ecl-help-block--disabled" id="example-textarea-id-1-helper">This is the input's helper text.</div><textarea id="example-textarea-id-1" class="ecl-text-area ecl-text-area--m" rows="4" placeholder="Placeholder text" disabled aria-describedby="example-textarea-id-1-helper"></textarea> </div>
Try it yourself on the playground
PlaygroundInvalid text area
This is the input's helper text.
<div class="ecl-form-group"><label for="example-textarea-id-1" id="example-textarea-id-1-label" class="ecl-form-label ecl-form-label--invalid">Label<span class="ecl-form-label__optional" role="note" aria-label="optional">(optional)</span></label> <div class="ecl-help-block" id="example-textarea-id-1-helper">This is the input's helper text.</div><textarea id="example-textarea-id-1" class="ecl-text-area ecl-text-area--invalid ecl-text-area--m" rows="4" placeholder="Placeholder text" aria-describedby="example-textarea-id-1-helper example-textarea-id-1-invalid" aria-invalid="true"></textarea> <div class="ecl-feedback-message" id="example-textarea-id-1-invalid"><svg class="ecl-icon ecl-icon--m ecl-feedback-message__icon" focusable="false" aria-hidden="true"> <use xlink:href="/dist/media/icons.b6764719.svg#error"></use> </svg>This is the error message</div> </div>
Try it yourself on the playground
PlaygroundRequired text area
This is the input's helper text.
<div class="ecl-form-group"><label for="example-textarea-id-1" id="example-textarea-id-1-label" class="ecl-form-label">Label<span class="ecl-form-label__required" role="note" aria-label="required">*</span></label> <div class="ecl-help-block" id="example-textarea-id-1-helper">This is the input's helper text.</div><textarea id="example-textarea-id-1" class="ecl-text-area ecl-text-area--m" rows="4" placeholder="Placeholder text" required aria-describedby="example-textarea-id-1-helper"></textarea> </div>
Try it yourself on the playground
Playground