要设置flexbox项目之间的最小距离,我使用margin: 0 5px on .item和margin: 0 -5px on container。对我来说,这似乎是一种hack,但我找不到更好的方法来做到这一点。
#箱{
显示:flex;
宽度:100 px;
Margin: 0 -5px;
}
.item {
背景:灰色;
宽度:50 px;
高度:50 px;
边距:0 5px;
}
< div id =“盒子”>
< div class = '物品' > < / div >
< div class = '物品' > < / div >
< div class = '物品' > < / div >
< div class = '物品' > < / div >
< / div >
从sawa的答案开始,这里有一个稍微改进的版本,允许您在没有周围边距的情况下设置项目之间的固定间距。
http://jsfiddle.net/chris00/s52wmgtq/49/
还包括Safari“-webkit-flex”版本。
.outer1 {
background-color: orange;
padding: 10px;
}
.outer0 {
background-color: green;
overflow: hidden;
}
.container
{
display: flex;
display: -webkit-flex;
flex-wrap: wrap;
-webkit-flex-wrap: wrap;
background-color: rgba(0, 0, 255, 0.5);
margin-left: -10px;
margin-top: -10px;
}
.item
{
flex-grow: 1;
-webkit-flex-grow: 1;
background-color: rgba(255, 0, 0, 0.5);
width: 100px;
padding: 10px;
margin-left: 10px;
margin-top: 10px;
text-align: center;
color: white;
}
<div class="outer1">
<div class="outer0">
<div class="container">
<div class="item">text</div>
<div class="item">text</div>
<div class="item">text</div>
<div class="item">text</div>
<div class="item">text</div>
<div class="item">text</div>
</div>
</div>
</div>
你可以使用透明边框。
我在尝试构建一个灵活的网格模型时考虑过这个问题,该模型可以为旧的浏览器退回到表格+表格单元模型。在我看来,作为圆柱排水沟的Borders似乎是最合适的选择。例如,表格单元格没有边距。
e.g.
.column{
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 10px solid transparent;
}
还要注意你需要min-width: 50px;flexbox。flex模型不会处理固定大小,除非你执行flex: none;在你想要固定的子元素上,因此被排除在“可伸缩”之外。http://jsfiddle.net/GLpUp/4/
但是所有列和flex一起:none;不再是弹性模型。
这里有一个更接近flex模型的东西:http://jsfiddle.net/GLpUp/5/
所以你可以正常使用页边距如果你不需要旧浏览器的表单元格回退。http://jsfiddle.net/GLpUp/3/
背景剪辑:填充盒;在使用背景时将是必要的,否则背景将流入透明边框区域。
假设:
你想要4列网格布局与包装
项目的数量不一定是4的倍数
除了第1、5、9项以外,每项都设置左距;并在每个项目上设置固定宽度。如果左边的边距是10px,那么每行4个项目之间的边距是30px,项目宽度的百分比可以计算如下:
100% / 4 - horizontal-border - horizontal-padding - left-margin * (4 - 1) / 4
这是一个体面的工作,涉及flexbox最后一行的问题。
.flex {
显示:flex;
flex-direction:行;
flex-wrap:包装;
保证金:1em 0;
background - color:桃色;
}
.item {
margin-left: 10 px;
边框:1px实体;
填充:10 px;
宽度:calc(100% / 4 - 2px - 20px - 10px * (4 - 1) / 4);
background - color:番木瓜;
}
.item:n -child(4n + 1) {
margin-left: 0;
}
.item:n -child(n + 5) {
margin-top: 10 px;
}
flex < div class = " " >
< div class = "项目" > < / div > 1
< div class = "项目" > < / div > 2
< div class = "项目" > 3 < / div >
4 < div class = "项目" > < / div >
< / div >
flex < div class = " " >
< div class = "项目" > < / div > 1
< div class = "项目" > < / div > 2
< div class = "项目" > 3 < / div >
4 < div class = "项目" > < / div >
5 < div class = "项目" > < / div >
< div class = "项目" > < / div > 6
< / div >
flex < div class = " " >
< div class = "项目" > < / div > 1
< div class = "项目" > < / div > 2
< div class = "项目" > 3 < / div >
4 < div class = "项目" > < / div >
5 < div class = "项目" > < / div >
< div class = "项目" > < / div > 6
< div class = "项目" > < / div > 7
< div class = "项目" > < / div > 8
< div class = "项目" > < / div > 9
< / div >
这种解决方案适用于所有情况,即使有多行或任意数量的元素。但是section的计数应该是一样的,你想在第一行有4个,第二行有3个,这样不行,第4个内容的空间将是空白的,容器不会填充。
我们使用display: grid;以及它的性质。
#箱{
显示:网格;
宽度:100 px;
grid-gap: 5 px;
/*项目之间的空格*/
grid-template-columns:重复(4 1 fr);
/*决定列的数量(4)和大小(1fr | 1分数|你也可以使用像素和其他值)*/
}
.item {
背景:灰色;
宽度:100%;
/* width是没有必要的,只是添加这个来理解width工作为网格模板分配空间的100%**默认宽度将是100%** */
高度:50 px;
}
< div id =“盒子”>
< 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 >
这种方法的缺点是在移动Opera Mini将不被支持,在PC上只有在IE10之后才能工作。
注意,完整的浏览器兼容性包括IE11,请使用Autoprefixer
旧的答案
不要认为它是一个旧的解决方案,如果你只想要单行元素,它仍然是最好的解决方案之一,它可以在所有浏览器上工作。
这个方法是由CSS兄弟姐妹组合使用的,所以你也可以用许多其他的方式来操作它,但如果你的组合是错误的,它也可能会导致问题。
.item+.item{
margin-left: 5px;
}
下面的代码将完成这个任务。在这种方法中,不需要给出margin: 0 -5px;到#box包装器。
为您提供一个工作示例:
#箱{
显示:flex;
宽度:100 px;
}
.item {
背景:灰色;
宽度:22 px;
高度:50 px;
}
.item + .item {
margin-left: 5 px;
}
< div id =“盒子”>
< div class = '物品' > < / div >
< div class = '物品' > < / div >
< div class = '物品' > < / div >
< div class = '物品' > < / div >
< / div >