我有这个网站(非常恢复):
<body>
<div id="container">
<!-- all html in here -->
</div>
</body>
问题是我需要页面居中(所以我不能使用浮动),
身体有background:#ddd
,容器有background:#fff
,
问题是白色背景不可见,除非我以 px 为容器设置 min-height 或 height (或者如果我设置了浮动,但不兼容),
#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/