gpt4 book ai didi

html - 在 TextBox 旁边放置一个 Button,总宽度为 100%

转载 作者:太空狗 更新时间:2023-10-29 14:46:57 26 4
gpt4 key购买 nike

当 Button 具有给定宽度(通过它的值)并且 Parent div 也具有给定宽度时,是否可以将 Button 放置在 TextBox 旁边。最后TextBox的宽度+Button的宽度应该是父div的宽度。

测试示例:

#left
{
float: left;
width: 100%;
}
#right
{
width: auto;
}
<div>
<input type="text" id="left"/>
<input type="button" id="right" value="AnyText"/>
</div>

谢谢!

最佳答案

form { display: flex; }
input[type=text] { flex-grow: 1; }
<form>
<input type="text">
<input type="button" value="Button text">
</form>

关于html - 在 TextBox 旁边放置一个 Button,总宽度为 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31648052/

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