gpt4 book ai didi

html - div 与 fixed 左对齐,另一个 div 与 100% 对齐

转载 作者:行者123 更新时间:2023-11-28 13:21:53 26 4
gpt4 key购买 nike

我想让一个 div 固定在左边。我希望另一个 div 占用 100% 的大小 restante.quero 使 div 与固定的左侧对齐。我希望另一个 div 占据剩余大小的 100%。

但是,第二个div总是往下,但是第二个div总是往下。

如何做到这一点?如何做到这一点?

演示 jsFiddle:

http://jsfiddle.net/jxt4V/1/

.coluna2
{
height:auto;
width:100%;
float : left;
}

最佳答案

将您的以下 css 更改为此:(#principal.coluna2)

#principal 
{
width:100%;
background:#babaca;
float : left;
word-wrap: break-word;
position:relative; /* adding Position: relative; here */
}



.coluna2
{
height:auto;
position:absolute;
top:0;
left:150px; /* giving the value of the adjacent element ie width: 150px */
bottom:0;
right:0;
}

Working Fiddle

关于html - div 与 fixed 左对齐,另一个 div 与 100% 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15548474/

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