gpt4 book ai didi

html - CSS : How to make two column right fluid left fluid depend on right

转载 作者:太空宇宙 更新时间:2023-11-04 09:50:07 24 4
gpt4 key购买 nike

我已经搜索过了,但没有适合我的解决方案。我正在尝试制作两列:

Left fluid + Right fluid.

左列包含 100% width 的输入框,左列 width 取决于右列 width

  • B 只是一个文本 div,但我不知道文本的长度。它是动态长度。

  • A只是输入框。

因此,如果 B 是较长的文本,则 A 应该较短。

请看下图

Please take look at the below image

有什么建议吗?

最佳答案

您可以使用 Flexbox 并在输入上设置 flex: 1

.el {
display: flex;
}
input {
flex: 1;
background: #A3FF9A;
}
p {
background: #FF87DE;
margin: 0;
}
<div class="el">
<input type="text">
<p>Lorem ipsum dolor.</p>
</div>

关于html - CSS : How to make two column right fluid left fluid depend on right,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39179683/

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