Text Area
Add a multi-line plain-text editing control.
autocomplete
, autofocus
, class
, cols
, disabled
, form
, id
, maxlength
, minlength
, name
, name
, placeholder
, readonly
, required
, rows
, spellcheck
, tabindex
, wrap
text
Read-only with prefilled text:
{{< hackcss-textarea readonly="true" text="Only this and nothing more." >}}
With spellcheck disabled:
{{< hackcss-textarea spellcheck="false" >}}
With 16 columns and hard wrapping enabled:
{{< hackcss-textarea cols="16" wrap="hard" >}}
Inside disabled form group with error label and placeholder:
{{< hackcss-formgroup hastextarea="true" disabled="true" state="error" >}}
{{< hackcss-label for="message" text="Message:" />}}
{{< hackcss-textarea id="message" placeholder="Guestbook offline…" rows="10" >}}
{{< /hackcss-formgroup >}}