我使用一个伸缩框来显示8个项目,这些项目将随着我的页面动态调整大小。我如何迫使它把项目分成两行?(每行4个)?

这里有一个相关的片段:

(或者如果你喜欢jsfiddle - http://jsfiddle.net/vivmaha/oq6prk1p/2/)

.parent-wrapper { height: 100%; width: 100%; border: 1px solid black; } .parent { display: flex; font-size: 0; flex-wrap: wrap; margin: -10px 0 0 -10px; } .child { display: inline-block; background: blue; margin: 10px 0 0 10px; flex-grow: 1; height: 100px; } <body> <div class="parent-wrapper"> <div class="parent"> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> </div> </div> </body>


当前回答

这是另一种方法。

你也可以用这种方式来实现:

.parent{
  display: flex;
  flex-wrap: wrap;
}

.child{
  width: 25%;
  box-sizing: border-box;
}

示例: https://codepen.io/capynet/pen/WOPBBm

还有一个更完整的样本: https://codepen.io/capynet/pen/JyYaba

其他回答

这里有另一种不使用calc()的方法。

// 4 PER ROW
// 100 divided by 4 is 25. Let's use 21% for width, and the remainder 4% for left & right margins...
.child {
  margin: 0 2% 0 2%;
  width: 21%;
}

// 3 PER ROW
// 100 divided by 3 is 33.3333... Let's use 30% for width, and remaining 3.3333% for sides (hint: 3.3333 / 2 = 1.66666)
.child {
  margin: 0 1.66666% 0 1.66666%;
  width: 30%;
}

// and so on!

这就是它的全部。你可以在尺寸上花点心思来获得更美观的尺寸,但这就是我们的想法。

.parent-wrapper { height: 100%; width: 100%; border: 1px solid black; } .parent { display: flex; font-size: 0; flex-wrap: wrap; margin-right: -10px; margin-bottom: -10px; } .child { background: blue; height: 100px; flex-grow: 1; flex-shrink: 0; flex-basis: calc(25% - 10px); } .child:nth-child(even) { margin: 0 10px 10px 10px; background-color: lime; } .child:nth-child(odd) { background-color: orange; } <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style type="text/css"> </style> </head> <body> <div class="parent-wrapper"> <div class="parent"> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> <div class="child"></div> </div> </div> </body> </html>

;)

我会这样做,使用负边缘和calc水沟:

.parent {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
  margin-left: -10px;
}

.child {
  width: calc(25% - 10px);
  margin-left: 10px;
  margin-top: 10px;
}

演示:https://jsfiddle.net/9j2rvom4/


替代CSS网格方法:

.parent {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

演示:https://jsfiddle.net/jc2utfs3/

你有弹性包装:包裹在容器上。这很好,因为它覆盖了默认值nowrap (source)。这就是为什么在某些情况下,物品不会被包装成网格的原因。

在这种情况下,主要问题是伸缩项目上的flex-grow: 1。

flex-grow属性实际上并不调整伸缩项的大小。它的任务是在容器(源)中分配空闲空间。所以不管屏幕大小有多小,每个项目都将获得相应比例的在线空闲空间。

更具体地说,容器中有8个伸缩项。使用flex-grow: 1,每一个都接收一行上1/8的空闲空间。因为你的项目中没有内容,它们可以收缩到零宽度,永远不会自动换行。

解决方案是在项目上定义宽度。试试这个:

.parent { 显示:flex; flex-wrap:包装; } .child { Flex: 10 21%;*/下面的/*解释 保证金:5 px; 身高:100 px; 背景颜色:蓝色; } < div class = "父" > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < div class = "孩子" > < / div > < / div >

使用flex简写中定义的flex-grow: 1,就不需要flex- base为25%,这实际上会导致每行有3个项。

由于flex-grow会消耗行上的空闲空间,因此flex-basis只需要足够大就可以强制换行。在这种情况下,如果采用21%的弹性计价制,就会有足够的空间放置页边距,但永远没有足够的空间放置第五项。

为.child元素添加宽度。如果你想每行都是4,我个人会在左边空白处使用百分比。

DEMO

.child {
    display: inline-block;
    background: blue;
    margin: 10px 0 0 2%;
    flex-grow: 1;
    height: 100px;
    width: calc(100% * (1/4) - 10px - 1px);
}