gpt4 book ai didi

html - 三个流体 div,中心 div 包含一个表单输入

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

尝试了各种方法让它工作,但我的最终结果从来没有像预期的那样。我在一个容器中有三个 div 来拉伸(stretch)屏幕的宽度,中间的 div 包含一个表单/输入。这个想法是在窗口调整大小时让中心 div 随表单调整大小。

<div style="width:100%;">
<div style="width:33%; float:right">Contact|Twitter|Pintrest</div>
<div style="width:33%; float:left;">Home|Blog|Fishing</div>
<div style="margin-right:33%; float:left;"><form><input style="width:100%;"></form></div>
</div>

这只是一个简单的例子来展示我的尝试。感谢任何帮助。

最佳答案

也将 width 设置为中心元素,请参见下面的示例代码(为了更好地阅读示例,我将您的内联样式放入 CSS):

<style>
#left {background: #333; width: 33%; float: left;}
#right {background: #666; width: 33%; float: right;}
#center {background: red; float: none; width: 33%; margin: 0; display: inline-block;}
</style>

<div>
<div id=right>Contact|Twitter|Pintrest</div>
<div id=left>Home| Blog|Fishing</div>
<div id=center><form><input style="width:100%;"></form></div>
</div>

http://jsfiddle.net/qkpnxwpa/

关于html - 三个流体 div,中心 div 包含一个表单输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29079055/

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