gpt4 book ai didi

css - 页面容器没有高度

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

我有这个网站(非常恢复):

<body>
<div id="container">
<!-- all html in here -->
</div>
</body>

问题是我需要页面居中(所以我不能使用 float ),

主体有background:#ddd,容器有background:#fff,

问题是白色背景不可见,除非我以 px 为容器设置最小高度或高度(或者如果我设置 float ,但不兼容),

#container 标记是:

#contenedor{
display: block;
background: white;
width: 1024px;
padding: 44px 2px 2px;
position: relative; /* is relative so the margin auto works */
margin: auto;

}

测试在这里:http://jsfiddle.net/bfzWN/

最佳答案

一个简单的解决方案是将 overflow:auto 添加到您的容器 (#contenedor) 中:

#contenedor{
display: block;
background: white;
width: 1024px;
padding: 44px 2px 2px;
position: relative; /* is relative so the margin auto works */
margin: auto;
overflow: auto; /* ADD THIS LINE */
}

实例:http://jsfiddle.net/bfzWN/1/

关于css - 页面容器没有高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10343068/

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