Set textarea width to 100% in bootstrap modal

前端 未结 7 1098
夕颜
夕颜 2020-12-08 18:31

Was trying all possible ways, but never succeeded:

    
7条回答
  •  清歌不尽
    2020-12-08 18:36

    After testing those suggestions here, I draw the conclusion that we have to apply two things.

    1. Apply form-control class to your textarea element. This is among Bootstrap's built-in classes.

    2. 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.

提交回复
热议问题