Was trying all possible ways, but never succeeded:
After testing those suggestions here, I draw the conclusion that we have to apply two things.
Apply form-control class to your textarea element. This is among Bootstrap's built-in classes.
Extend this class by adding the following property:
.form-control {
max-width: 100%;
}
Hope this helps others who are looking for a solution to this issue.