Text Area
Text area specifies a control that allows user to write text over multiple rows. Used when the expected user input is long
Last updated
Text area specifies a control that allows user to write text over multiple rows. Used when the expected user input is long
Last updated
<div class="form-group required">
<label class="col-form-label">Text area label</label>
<textarea class="form-control form-control-lg" placeholder="Enter text here" rows="5"></textarea>
</div>
<div class="form-group">
<label class="col-form-label">Text area label</label>
<textarea class="form-control form-control-lg" placeholder="Enter text here" disabled rows="5"></textarea>
</div>
<!--Horizontal Form-->
<div class="form-group row required">
<label class="col-form-label col-md-3">Text area label</label>
<div class="col-md-9">
<textarea class="form-control form-control-lg" placeholder="Enter text here" rows="5"></textarea>
</div>
</div>