gpt4 book ai didi

css - 将 2 个框对齐,其中一个框的位置为 : fixed;

转载 作者:太空宇宙 更新时间:2023-11-03 18:22:59 24 4
gpt4 key购买 nike

我想像这样对齐两个框:

enter image description here

左侧面板宽度在 260-320px 范围内移动(取决于浏览器宽度)并且具有 position: fixed,而另一个面板应占据浏览器的剩余部分。

我在这里创建了一个 fiddle :http://jsfiddle.net/NTwUY/4/

问题是它们会互相超越,而不是一个挨着一个。我不想为此使用 javascript,我不能只在第二个上设置 margin-left: 260px 因为它是响应式的。

最佳答案

这是:http://jsfiddle.net/NTwUY/2/

你必须给 #holderfixed 规则:

#holder {
width: 100%;
position: fixed;
}

#panel {
float:left;
background-color: green;
min-width: 200px;
width: 20%;
max-width: 320px;
}

#content {
}

关于css - 将 2 个框对齐,其中一个框的位置为 : fixed;,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21456341/

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