gpt4 book ai didi

html - 将 div 粘贴到父聊天窗口的底部

转载 作者:行者123 更新时间:2023-11-28 00:32:08 27 4
gpt4 key购买 nike

我试图让聊天输入 (chatArea) float 在蓝色 div 容器的底部,并在滚动聊天时让它固定在那里。

感谢任何帮助,谢谢。

这是我现在拥有的 fiddle : https://jsfiddle.net/oyja38t5/

html:

<div class="chatContainer">
<div id="messages">
<p>test</p>
<p>test</p>
<p>test</p>
<p>test</p>
</div>
<div class="chatArea">
<form action="" id="cSubmitButton">
<input id="chatInput" autocomplete="off" placeholder="Type your guess here!"/>
</form>
</div>
</div>

CSS:

.chatContainer {
font-size: 18px;
position: relative;
background-color: #90C3D4;
width: 300px;
height: 600px;
overflow-y: scroll;
float: right;
display: inline-block;
margin-left: 8px;
border-radius: 2px;
}

.chatContainer p {
padding: 3px;
margin: 0;
}

.chatArea {
position: sticky;
bottom: 0;
width: 100%;
display: inline-block;
}

#chatInput {
width: 100%;
padding: 6px 12px;
}

#cSubmitButton {
width: 80%;
display: inline-block;
}

最佳答案

我想这就是你要找的

.chatContainer {
font-size: 18px;
position: relative;
background-color: #90C3D4;
width: 300px;
height: 600px;
overflow-y: scroll;
float: right;
display: inline-block;
margin-left: 8px;
border-radius: 2px;
}

.chatContainer p {
padding: 3px;
margin: 0;
}

.chatArea {
position: fixed;
bottom: 0;
width: 100%;
display: inline-block;
margin-top: 100%;
}

#chatInput {

width: 100%;
padding: 6px 12px;

}

#cSubmitButton {
width: 80%;
display: inline-block;
}
<div class="chatContainer">
<div id="messages">
<p>test</p>
<p>test</p>
<p>test</p>
<p>test</p>
</div>
<div class="chatArea">
<form action="" id="cSubmitButton">
<input id="chatInput" autocomplete="off" placeholder="Type your guess here!"/>
</form>
</div>
</div>

关于html - 将 div 粘贴到父聊天窗口的底部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54346421/

27 4 0
文章推荐: c++ - 将指向结构的 void 指针或 memcpy 转换为新结构?
文章推荐: javascript - 如何仅在右侧应用阴影并隐藏底部边框?
文章推荐: javascript - 我需要帮助阅读这段代码以了解它在做什么,以便我可以将它转换为 javascript
文章推荐: html - 有没有办法将一些
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com