Textarea Component

Textarea component is an input field for capturing a longer and larger text input from user. Bissetii did a number of researches on its own and decided to only provide styling for proper HTML5 semantic syntax defined by w3.org.

This component is available starting from v1.12.1.

Hugo

All Textarea Hugo interface is directly supported by Form Component.

Go

All Textarea Go interface is directly supported by Form Component.

HTML

Expanding from Form Component, Textarea component is to facilitate an input for entering a longer and larger text.

An all compatible attributes HTML syntax is shown as follows:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
<label for="input-javascript-id">Text</label>
<textarea
	id="input-javascript-id"
	name="example"
	cols="50"
	rows="50"
	wrap="hard"
	minlength="8"
	maxlength="40"
	spellcheck
	placeholder="...YOUR PLACEHOLDER..."
	required
	disabled
	autofocus
	autocomplete
	readonly
></textarea>

Here is an example:

CSS

All Textarea CSS variables is directly supported by Form Component.

Javascript

All Textarea Javascript is directly supported by Form Component.

Sass

All Textarea Sass is directly supported by Form Component.

Researches

Here are the researches done to ensure Textarea component meets the necessary quality assurances:

SCHEDULED COMING SOON

Epilogue

That’s all about Textarea component in Bissetii. If you need more feature or need to report a bug, please feel free to file an issue at our Issue Section.