HTML Textarea - cursor starting in center of textarea rather than top

邮差的信 提交于 2019-12-05 09:09:53

I think using

<textarea id="description" class="textarea" name="description" cols="70" rows="50"></textarea>

should solve your problem.

Providing space between the textarea tags usually results in such undesirable white spaces.Try the code with no spaces that would do the trick. <textarea></textarea>

Your syntax is not correct. You may not include a type attribute with a value of textarea, instead as "roy" suggested you have to use <textarea></textarea> tag

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!