textarea的光标前有空格的解决方法

如果 </textarea> 不顶格写 页面的输入框前就会有空格 如:

1     <textarea rows="5" name="memberList" cols="30">
2     </textarea>

正确写法是

  <textarea rows="5" name="memberList" cols="30"></textarea>

 

  

原文地址:https://www.cnblogs.com/vincent_ds/p/2606552.html