Kraken
Kraken

Reputation: 24243

Nice design for Textarea in forms in bootstrap?

Arent there any CSS stylings for textarea in CSS bootstrap?

<input type="text" > has various classes that can be applied to it, but nothing for textarea?

Upvotes: 0

Views: 2657

Answers (1)

Albzi
Albzi

Reputation: 15619

You can give it a class of .form-control in a form which gives it the 'bootstrap' look like other inputs.

Example:

<textarea class='form-control'>Test</textarea>

You can however still add some classes to the parent div:

has-warning
has-error
has-success 

Most styling classes you can give an input's parent, you can give to a textarea's. However, classes applied to textarea's parents like has-feedback will have varied results.

Example: bootply

Upvotes: 2

Related Questions