How to increase height of textarea using bootstrap rows and columns
textarea {
width: 300px;
height: 150px;
}
adjust as needed.
With Bootstrap 4 you will need to have the property rows and add "height: 100%;" so that the height would stretch to the number of rows specified. "rows" along does not work.
<textarea rows="10" style="height:100%;"></textarea>