gpt4 book ai didi

javascript - 可以在 textarea 中输入的 cols 数量限制

转载 作者:太空宇宙 更新时间:2023-11-03 22:36:17 29 4
gpt4 key购买 nike

我有一个 textarea 和 input [type=image] 最后定位(绝对)在里面。

当用户键入文本时,文本可能会像这样显示在图像下方 My example

但我想要的是作为谷歌翻译的版本 - 限制可以输入的列数或为图标提供更多可用空间 Google Translator

这是我的代码

#cross {
position: absolute;
margin-left: -19px;
margin-top: 36px;
}
<div class="form-group col-md-6" id="txtbox1">
<input type="image" onclick="clearMessageArea('#userMessage')" src="img/cross.svg" id="cross" style="width: 14px; height: 14px" />
<textarea class="form-control" id="userMessage" rows="6" style="resize: none"></textarea>
</div>

最佳答案

您可以使用一些 padding-right 来避免字符到达右边缘。但这意味着其他线也不会到达右边缘。

#cross {
position: absolute;
margin-left: -19px;
margin-top: 36px;
}

#userMessage {
padding-right: 15px;
width: 200px;
}
<div class="form-group col-md-6" id="txtbox1">
<input type="image" onclick="clearMessageArea('#userMessage')" src="https://placehold.it/14" id="cross" style="width: 14px; height: 14px" />
<textarea class="form-control" id="userMessage" rows="6" style="resize: none"></textarea>
</div>

更新:Google 也为此使用了 padding-right: 20px。你可以查看here .

关于javascript - 可以在 textarea 中输入的 cols 数量限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46388388/

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