gpt4 book ai didi

html - 在 100% 宽度的 div 旁边 float div

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

我想在内容为 width: 100% 的 div 旁边放置一个 div。所以标记是:

<div id="left_sidebar" style="float: left; height: 100%; width: 150px;"></div>
<div id="outer_wrapper" style="position: relative; float: left;"></div>

#outer_wrapper 中几乎所有内容的宽度都是 100%。不幸的是,它不起作用。

我做了一个FIDDLE

最佳答案

怎么样:

#left {
width: 150px;
height: 1000px;
background-color: green;
float: left;
}
#right {
width: 100%;
height: 1000px;
background-color: red;
float: left;
}
<div id="right">
content here
<div id="left"></div>
more content here
</div>

第二个选项:

删除 .right div 的宽度和 float 属性并给它 150px 的左边距:

#left {
width: 150px;
height: 1000px;
background-color: green;
float: left;
}
#right {
height: 1000px;
background-color: red;
margin-left:150px;
}
<div id="left"></div>
<div id="right"></div>

关于html - 在 100% 宽度的 div 旁边 float div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25913370/

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