我想使用Flexbox,有一些项目,都是相同的宽度。我注意到Flexbox均匀地分配空间,而不是空间本身。

例如:

.header { 显示:flex; } .item { flex-grow: 1; text-align:中心; 边框:1px纯黑色; } < div class = "头" > < div class = "项目" > asdfasdfasdfasdfasdfasdf < / div > z < div class = "项目" > < / div > < / div >

第一项比第二项大得多。如果我有3个项目、4个项目或n个项目,我希望它们都出现在同一行上,每个项目的空间相等。

什么好主意吗?

http://codepen.io/anon/pen/gbJBqM


当前回答

在flex的子元素上,

flex: 1 1 25%

这将允许有四个项目。

如果你想增加更多的项目,那么你可以减少%。

其他回答

你可以添加弹性基础:100%来实现这一点。

更新的例子

.header {
  display: flex;
}

.item {
  flex-basis: 100%;
  text-align: center;
  border: 1px solid black;
}

无论如何,您也可以使用flex: 1来获得相同的结果。

flex: 1的简写与flex: 11 10相同,相当于:

.item {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  text-align: center;
  border: 1px solid black;
}

这些解决方案对我来说都没用,但这个奏效了:

.header { display: flex; } .item { width: 100%; } /* Demo styles, for aesthetics. */ .demo { margin: 3rem; } .demo .item { text-align: center; padding: 3rem; background-color: #eee; margin: 0 1.5rem; } <div class="demo"> <div class="header"> <div class="item"> 1 </div> <div class="item"> 2 </div> <div class="item"> 3 </div> </div> </div> <div class="demo"> <div class="header"> <div class="item"> 1 </div> <div class="item"> 2 </div> </div> </div> <div class="demo"> <div class="header"> <div class="item"> 1 </div> <div class="item"> 2 </div> <div class="item"> 3 </div> <div class="item"> 4 </div> <div class="item"> 5 </div> </div> </div>

我也有类似的问题,所以找到了作弊的方法。

正如其他人所说,flex- base和flex-grow: 1是保持项大小相同的方法,但当项太少时,最后一行是例外(它们填满了所有可用空间,使它们比其他项更大)。为了防止这种情况发生,我添加了一个具有可见性的空间隔项:hidden,并根据快速计算有多少项来设置内联的flex- growth值。

如果您知道父容器的宽度,这就更容易了,但即使您不知道,也可以使用媒体查询和断点在间隔器上设置伸缩增长值。

Adam给出的公认答案(flex: 11 10)非常适合宽度固定或由祖先决定的flexbox容器。你想让孩子们适应容器的情况。

但是,您可能会遇到这样的情况:您希望容器能够容纳子容器,并且基于最大的子容器,子容器的大小相同。你可以通过以下方法使flexbox容器适合它的子容器:

设置位置:绝对和不设置宽度或右,或 将其放置在带有display: inline-block的包装器中

对于这种灵活的容器,接受的答案不工作,孩子的大小不相等。我认为这是flexbox的一个限制,因为它在Chrome、Firefox和Safari中表现相同。

解决方案是使用网格代替flexbox。

当您运行此代码片段时,请确保单击整个页面以正确地查看效果。

body { margin: 1em; } .wrap-inline-block { display: inline-block; } #div0, #div1, #div2, #div3, #div4 { border: 1px solid #888; padding: 0.5em; text-align: center; white-space: nowrap; } #div2, #div4 { position: absolute; left: 1em; } #div0>*, #div1>*, #div2>*, #div3>*, #div4>* { margin: 0.5em; color: white; background-color: navy; padding: 0.5em; } #div0, #div1, #div2 { display: flex; } #div0>*, #div1>*, #div2>* { flex: 1 1 0; } #div0 { margin-bottom: 1em; } #div2 { top: 15.5em; } #div3, #div4 { display: grid; grid-template-columns: repeat(3,1fr); } #div4 { top: 28.5em; } <p>Normal scenario — flexbox where the children adjust to fit the container — and the children are made equal size by setting {flex: 1 1 0}</p> <div id="div0"> <div> Flexbox </div> <div> Width determined by viewport </div> <div> All child elements are equal size with {flex: 1 1 0} </div> </div> <p>Now we want to have the container fit the children, but still have the children all equally sized, based on the largest child. We can see that {flex: 1 1 0} has no effect.</p> <div class="wrap-inline-block"> <div id="div1"> <div> Flexbox </div> <div> Inside inline-block </div> <div> We want all children to be the size of this text </div> </div> </div> <div id="div2"> <div> Flexbox </div> <div> Absolutely positioned </div> <div> We want all children to be the size of this text </div> </div> <br><br><br><br><br><br> <p>So let's try a grid instead. Aha! That's what we want!</p> <div class="wrap-inline-block"> <div id="div3"> <div> Grid </div> <div> Inside inline-block </div> <div> We want all children to be the size of this text </div> </div> </div> <div id="div4"> <div> Grid </div> <div> Absolutely positioned </div> <div> We want all children to be the size of this text </div> </div>

在flex的子元素上,

flex: 1 1 25%

这将允许有四个项目。

如果你想增加更多的项目,那么你可以减少%。