首页 > 解决方案 > 在引导文本区域中强制文本从最左端开始时遇到问题

问题描述

如果我不小心将光标放在文本区域的前面,它会从那里开始写,在开头留下一些我不想要的空格。我想强制它从最左边开始,就像在输入框中一样。这是代码和随附的屏幕截图以供参考:

<label>Post your query below!</label>
<textarea class="sidebar_area" id="sender_query" placeholder="Write your [enter image description here][1]query here! " rows="4" cols="23">
        </textarea>

<button type="submit" class="send_button" id="send_button">Send</button>

标签: htmlcsstwitter-bootstraptextarea

解决方案


只要确保<textarea></textarea>标签之间没有空格

<textarea class="sidebar_area" id="sender_query" placeholder="Write your [enter image 
description here][1]query here! " rows="4" cols="23"></textarea>

推荐阅读