My form allows users to input their data, but once submitted, the form becomes read-only. However, I'm facing an issue where the data in the text area is not scrollable even though it should be.
I need assistance in figuring out why the content in the text area above is not scrollable.
<div class="form-group">
<div class="col-sm-3 control-label col-lg-3">Additional information <sup>*</sup></div>
<div class="col-lg-6" style="overflow:auto;">
<textarea style="overflow:auto;" class="form-control" name="additional-info" placeholder="Enter Additonal info">{{data}}</textarea>
</div>
</div>