Appearance
The TextArea provides a predefined set of appearance options.
Apart from the default vision of the TextArea, these alternative styling options enable you to configure each individual aspect of the component's appearance.
The current article provides details about how the component changes when the different configurations of its properties are applied. Here are the sections you can directly access:
Configurator demo
The following example demonstrates configuring different aspects of a TextArea appearance through a configurator.
Size
The size of the TextArea is controlled through its size property. The values we can pass to the property are as follows:
small— Sets thepaddingto2pxand8px.medium(Default) — Sets thepaddingto4pxand8px.large— Sets thepaddingto6pxand8px.null— Passingnullto thesizeproperty gives us the option to define acustom CSS classthat sets thepaddingof the TextArea.
The following example demonstrates the usage of each size option:
Roundness
The roundness of the TextArea is controlled through its rounded property. The values we can pass to the property are as follows:
small— Sets theborder radiusto1px.medium(Default) — Sets theborder radiusto2px.
large— Sets theborder radiusto4px.
full— Sets theborder radiusto9999px.null— Passingnullto theroundedproperty gives us the option to define acustom CSS classthat defines theborder-radiusof the TextArea.
The following example demonstrates the usage of each rounded option:
Fill Mode
The styling of the TextArea is controlled through its fillMode property. The values we can pass to the property are as follows:
solid(Default) — Sets abackgroundcolor andsolid borders.flat— Setstransparent background and bordersin default state, andbackground colorin focused state.outline— Sets atransparent backgroundandsolid borders.null— Passingnullto thefillModeproperty gives us the option to define acustom CSS classthat defines thebackgroundandborderof the TextArea.
The following example demonstrates the usage of each fillMode option: