这里提供一种实现多行输入框和发送按钮并排布局的 CSS 布局方案,可以参考以下代码:
HTML 代码:
<div class="input-container">
<textarea id="input" class="input-textarea" placeholder="请输入内容"></textarea>
<button id="send-btn" class="send-button">发送</button>
</div>
CSS 代码:
.input-container {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
max-width: 600px;
margin: 0 auto;
padding: 12px;
border: 1px solid #ddd;
box-sizing: border-box;
}
.input-textarea {
flex: 1;
height: 80px;
resize: none;
font-size: 15px;
line-height: 1.5;
padding: 10px;
border: none;
outline: none;
}
.send-button {
display: inline-block;
padding: 10px 20px;
font-size: 14px;
color: #fff;
background-color: #1890ff;
border: none;
border-radius: 4px;
cursor: pointer;
transition: all 0.3s;
}
.send-button:hover {
background-color: #40a9ff;
}
具体解释:
首先,我们创建一个父容器 .input-container
,设置 display: flex
和 justify-content: space-between
让多行输入框和发送按钮水平排列并且靠左右两侧,同时通过 align-items: center
设置居中垂直对齐。
多行输入框的 CSS 样式包括 flex: 1
让它自适应宽度并占据剩余空间,resize: none
禁止用户调整输入框大小,border: none
和 outline: none
去除边框和外边框,font-size: 15px
和 line-height: 1.5
调整字体大小和行高, padding
设置内边距,让文字离输入框周围有一定的间隔。
发送按钮的 CSS 样式包括设置 display: inline-block
让其块级元素内外边距可控制,并设置 padding
内边距值。同时,还设置了一些样式来增强用户体验,例如给按钮添加鼠标悬停后的背景色以及一个过渡时间让样式更加平滑。