gpt4 book ai didi

html - 文本框中的光标位于中间而不是顶部

转载 作者:行者123 更新时间:2023-12-02 03:45:13 24 4
gpt4 key购买 nike

我有一个文本框,用户可以在其中输入评论;但是,当用户在文本框中单击时,光标会在他们键入时位于文本框的中间(见图 1)。

如何将光标定位在文本框的左上角,就像图片 #2 中显示的那样?

如有任何帮助,我们将不胜感激!

      <form className="comment-form" action="/comments" method="post">
<input type="hidden"
name="authenticity_token"
value={this.props.token}/>

<label htmlFor="comment[body]">Comment</label>
<input name="comment[body]" type="textarea" rows="1" cols="50" wrap="physical" id="comment_text_area" />

<label htmlFor="image[image]">Image</label>
<input name="comment[image]" type="file" />

<div className="request-actions">
<button>Comment on Request</button>
<a onClick={this.props.closeEditor}>Cancel</a>
</div>
</form>

.comments {
margin: 20px 0;
}

.comment {
background-color: $light-grey-5;
padding: rem-calc(10);
border-bottom: 3px solid White;
font-size: 13px;
}

.comment__user {
color: $black;
}

.request__comment {
margin-bottom: 20px;
}

.comment-form input[type="textarea"] {
width: 500px;
height: 150px;
font-size: 16px;
border: 2px solid #ccc;

}

@media #{$screen} and (max-width: #{$medium-breakpoint}) {
.comments { margin-left: 0px; }
.comment-content { margin-top: 10px; }
}

Picture 1

Picture 2 - What I want my textbox to look like

最佳答案

没有<input type="textarea" /> .

将其更改为:

<textarea name="comment[body]" rows="1" cols="50" wrap="physical" id="comment_text_area"></textarea>

关于html - 文本框中的光标位于中间而不是顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46981931/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com