我正在制作一个可以容纳大量内容的页面。它可以轻松地增长到(或超过)10.000px的宽度。我只是想让我的页面延伸。
这应该非常简单,我可以使用display: table-cell
进行修复,但是它不会“闻到”正确的答案。感觉就像是骇客。我想我缺少了一些关键的东西。
Fiddle
CSS:
#container { white-space: nowrap; padding: 50px; background-color: green; }
#container > div { display: inline-block; width: 200px; height: 200px; }
#container > div:nth-child(2n+1) { background-color: red; }
body { background-color: #ccc; }
HTML:
<div id="container">
<div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div>
</div>
为什么容器
div
不能扩展到其内容?BODY
已正确拉伸,因此如何强制我的容器div
采用其父级或子级的宽度? 最佳答案
尝试这样的事情
#container {
background-color: #008000;
display: table;
padding: 50px;
white-space: nowrap;
}
已编辑
#container {
background-color: #008000;
display: inline-block;
padding: 50px;
white-space: nowrap;
}
DEMO
关于html - 在窗口宽度上拉伸(stretch)容器DIV,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23754074/