The textarea cursor is not at the beginning, and the placeholder content is not displayed

insert image description here
Original code:

  <textarea  class="form-control" id="addIntroduction" name="addIntroduction" row="6"
             placeholder="请输入教师介绍">
  </textarea>

Solution: Remove <textarea>the newline of the label

<textarea  class="form-control" id="addIntroduction" name="addIntroduction" row="6" placeholder="请输入教师介绍"></textarea>

Guess you like

Origin blog.csdn.net/qq_37344867/article/details/123776123