TextArea Appearance
The TextArea provides predefined appearance options such as different sizes, border radiuses and fill modes.
The following example demonstrates all available appearance options of the TextArea in action.
Size
The TextArea allows you to set different padding
on the internal <textarea>
element. To achieve this utilize the size
property. It accepts values of type InputSize
or none
.
The size
option supports the following values:
small
—Sets thepadding
of the internal<textarea>
element to2px 8px
.medium
(default)—Sets thepadding
of the internal<textarea>
element to4px 8px
.large
—Sets thepadding
of the internal<textarea>
element to6px 8px
.none
—The none option removes the built-in sizing of the TextArea. Allows for custom padding.
The following example demonstrates how to define the size of the TextArea.
Roundness
The TextArea enables you to apply different border radius
to the component through the rounded
property. It accepts values of type InputRounded
or none
.
The rounded
option supports the following values:
small
—Sets theborder radius
of the TextArea to1px
.medium
(default)—Sets theborder radius
of the TextArea to2px
.large
—Sets theborder radius
of the TextArea to4px
.full
—Sets theborder radius
of the TextArea track to9999px
.none
—The none option removes the built-in roundness of the TextArea. Allows for customborder radius
.
The following example demonstrates how to define the border radius of the TextArea.
Fill Mode
The TextArea allows you to set different fill modes by using the fillMode
property. It accepts values of type InputFillMode
or none
.
The fillMode
option supports the following values:
flat
—Sets atransparent background
andsolid bottom border
.solid
(default)—Applies abackground
color andsolid borders
.outline
—Sets atransparent background
andsolid borders
.none
—The none option removes the built-in fill mode styles of the TextArea. Allows for custombackground
andborder
styles.
The following example demonstrates how to define the fill mode of the TextArea.