这里我没有什么问题(这里的价值就是这样说):
Lets say I have a window with a width around 500px. Inside my document, I have an outer div with no specified width, but the following css:
.outer{
white-space:nowrap;
background:blue;
}
除此以外,还有3个拥有以下财产的小区:
.t1{
display:inline-block;
width:400px;
}
(notice the width of 400px
. That s where the problem is, the line is wider than the window, and the outer div does not extend.
The HTML looks like that:
<div class="outer">
<div class="t1">1</div>
<div class="t1">2</div>
<div class="t1">3</div>
</div>
我想要达到的是,在不为<代码>t 1类别规定的情况下,有3个内聚四。 这一范例将产生一种蓝色背景,仅限于窗户的宽度。
See full example here: (如果你的屏幕大小,就必须调整底层左上角。)
我很想知道,在不确定外围宽度/内干线背景的情况下,是否只有ru才能达到。