gpt4 book ai didi

css - 最大化一个 float 的div?

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

假设我有 2 个并排的 div:1 个向左浮动,另一个向右浮动。现在假设我将左侧 float div 的大小固定为 200px。如何强制右侧 float div 自身“最大化”或占据剩余的水平屏幕空间(无论浏览器窗口的大小如何?

最佳答案

Here's a solution (inverted, right is fixed 200px) for you using position:absolute .

Here's a solution where the left is fixed 200px .

方法:基本上固定左侧的“侧边栏”,并在右侧的灵活列中添加边距,该边距等于侧边栏的宽度。

代码如下所示:

.left {
width: 200px;
position: absolute;
left: 0;
top: 0;
height: 100px;
background-color: #999;
}
.right {
min-height: 100px;
background-color: #666;
margin-left: 200px; /* Same as left's width */
}​

它们都可以在 IE6 中正常工作。

关于css - 最大化一个 float 的div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2996977/

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