gpt4 book ai didi

css - 如何用 float 设置高度?

转载 作者:行者123 更新时间:2023-11-28 13:27:16 25 4
gpt4 key购买 nike

我需要设置 height:100%。这是我的代码:

#wrapper{
width: 100%;
height: 100%;
margin: 0 auto;
padding: 50px 10px 0 0 !important;
/*border: 1px solid red;*/
}

#left-side{
border: 1px solid red;
float: left;
background-color: #FFFFFF;
height: 100%;
margin: 0 20px 0 10px;
width: 200px;
}
#right-side{
border: 1px solid green;
}

<body>
<div id="wrapper">
<div id="left-side">
lol
</div>
<div id="right-side">
<!-- squares -->
</div>
</div>
</body>

picture

问题出在哪里?

最佳答案

当您使用百分比时,它是相对于它的父级的。您的 #wrapper 的父级 (body) 没有定义高度。

在你的CSS中,添加:

    html, body { height: 100% }

现在您的#wrapper 可以关联到它的父级。这是因为 html 以浏览器窗口为父级,以 body html 为父级,等等。

Demo fiddle

关于css - 如何用 float 设置高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14015463/

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