我的容器内有一个输入和一个文本区域,该容器的height: 52.5vh. 我希望文本区域从输入的正下方开始并扩展到容器的末尾。我怎样才能这样做呢?
顺便说一句,这两个元素都应该填充整个宽度。
.contact__user-input {
max-height: 52.5vh;
height: 52.5vh;
overflow: scroll;
background-color: yellow;
}
textarea {
background-color: lightgray;
border: 1px solid grey;
outline: none;
color: black;
letter-spacing: 0;
text-transform: none;
box-shadow: none;
resize: none;
padding: 0.7rem;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="contact__user-input d-flex">
<input type="text" class="form-control" placeholder="Input"/>
<textarea class="contact__textarea separator--small h-100 w-100" placeholder="Textarea"></textarea>
</div>
天涯尽头无女友
慕工程0101907
相关分类