我有一个灵活项目的容器,我试图根据屏幕大小在不同的布局中组织不同数量的弹性项目。例如,在桌面上,我希望有4个容器,每个容器有2个项目,以2x4网格布局,每个单元格为1x2。我无法理解的是,只需使用flexbox即可在平板电脑上获得布局。任何正确方向的指针都会很棒。
div {
box-sizing: border-box;
width: 100%;
}
.container {
display: flex;
border: 1px solid red;
flex-wrap: wrap;
flex-direction: row;
padding: 10px;
}
.cell {
display: flex;
flex: 50%;
padding: 10px;
border: 1px solid blue;
height: 100px;
}
.data {
width: 100%;
justify-content: middle;
flex: 1;
border: 1px solid green;
}
@media only screen and (max-width: 1024px) {
.container {
display: inline-block;
position: relative;
}
#cell1 {
width: 66%;
float: left;
}
#cell2 {
flex-direction: column;
right: 10px;
position: absolute;
width: 33%;
height: 100%;
}
#cell3 {
width: 66%;
float: left;
}
#cell4 { display: none;}
}
@media only screen and (max-width: 640px) {
#cell2 {
flex-direction: row;
position: static;
height: 100px;
}
#cell4 { display: none; }
.container {
flex-direction: row;
flex-wrap: wrap;
display: flex;
}
.cell {
flex: 100%;
}
}

<div class="container">
<div class="cell" id="cell1">
<span class="data">Image1</span>
<span class="data">Info1</span>
</div>
<div class="cell" id="cell2">
<span class="data">Image2</span>
<span class="data">Info2</span>
</div>
<div class="cell" id="cell3">
<span class="data">Image3</span>
<span class="data">Info3</span>
</div>
<div class="cell" id="cell4">
<span class="data">Image4</span>
<span class="data">Info4</span>
</div>
</div>
&#13;
这是一个codepen here。
可以通过调整窗口大小来测试响应性。通过删除第4个容器并更改flex-direction属性,我能够正确地获得我想要的桌面和移动布局。努力为平板电脑做同样的事情,以便像在网格布局中那样跨越多个行/列跨越。
桌面 - 容器:2x4 |细胞:1x2
|---------------------------------|
| --------------- --------------- |
| | Cell | Cell | | Cell | Cell | |
| --------------- --------------- |
| --------------- --------------- |
| | Cell | Cell | | Cell | Cell | |
| --------------- --------------- |
|---------------------------------|
平板电脑 - 容器:2x3 | cell:1x2 / 2x1
|--------------------------|
| --------------- -------- |
| | Cell | Cell | | Cell | |
| --------------- |______| |
| --------------- | | |
| | Cell | Cell | | Cell | |
| --------------- -------- |
|--------------------------|
移动 - 容器:3x2 |细胞:1x2
|-----------------|
| --------------- |
| | Cell | Cell | |
| --------------- |
| --------------- |
| | Cell | Cell | |
| --------------- |
| --------------- |
| | Cell | Cell | |
| --------------- |
|-----------------|
答案 0 :(得分:1)
由于可以删除评论并保留其价值,因此我决定发布一个答案,并将此代码段作为基础。
div {
box-sizing: border-box;
width: 100%;
}
.container {
display: flex;
border: 1px solid red;
flex-wrap: wrap;
flex-direction: row;
padding: 10px;
}
.cell {
display: flex;
flex: 50%;
padding: 10px;
border: 1px solid blue;
height: 100px;
}
.data {
width: 100%;
justify-content: middle;
flex: 1;
border: 1px solid green;
}
@media only screen and (max-width: 1024px) {
.container {
display: inline-block;
position: relative;
}
#cell1 {
width: 66%;
float: left;
}
#cell2 {
flex-direction: column;
right: 10px;
position: absolute;
width: 33%;
height: 100%;
}
#cell3 {
width: 66%;
float: left;
}
#cell4 { display: none;}
}
@media only screen and (max-width: 640px) {
#cell2 {
flex-direction: row;
position: static;
height: 100px;
}
#cell4 { display: none; }
.container {
flex-direction: row;
flex-wrap: wrap;
display: flex;
}
.cell {
flex: 100%;
}
}
<div class="container">
<div class="cell" id="cell1">
<span class="data">Image1</span>
<span class="data">Info1</span>
</div>
<div class="cell" id="cell2">
<span class="data">Image2</span>
<span class="data">Info2</span>
</div>
<div class="cell" id="cell3">
<span class="data">Image3</span>
<span class="data">Info3</span>
</div>
<div class="cell" id="cell4">
<span class="data">Image4</span>
<span class="data">Info4</span>
</div>
</div>
要使其在平板电脑模式下工作,您需要将container
设为flex列容器,或使用absolute或float来定位第二个单元格。
它们在响应性方面都有局限性,即柔性柱容器解决方案需要固定的高度。
我觉得最有用的一个是保持默认的弹性行设置,并将它与第二个单元格的绝对位置结合起来。
这样第一和第三单元格将继续成为弹性项目,并从其响应性中受益。
如果第二个单元格的内容高于第一个/第三个单元格,则可以允许它滚动,或者添加一个调整其父级高度的小脚本。
Stack snippet
div {
box-sizing: border-box;
width: 100%;
}
.container {
display: flex;
border: 1px solid red;
flex-wrap: wrap;
flex-direction: row;
padding: 10px;
}
.cell {
display: flex;
flex: 50%;
padding: 10px;
border: 1px solid blue;
height: 100px;
}
.data {
width: 100%;
justify-content: middle;
flex: 1;
border: 1px solid green;
}
@media only screen and (max-width: 640px) {
#cell2 {
flex-direction: row;
position: static;
height: 100px;
}
#cell4 { display: none; }
.container {
flex-direction: row;
flex-wrap: wrap;
display: flex;
}
.cell {
flex: 100%;
}
}
@media only screen and (min-width: 640px) and (max-width: 1024px) {
.container {
position: relative;
}
#cell1 {
flex: 0 0 66%;
}
#cell2 {
flex-direction: column;
right: 10px;
position: absolute;
width: 33%;
height: calc(100% - 20px);
}
#cell3 {
flex: 0 0 66%;
}
#cell4 { display: none;}
}
<div class="container">
<div class="cell" id="cell1">
<span class="data">Image1</span>
<span class="data">Info1</span>
</div>
<div class="cell" id="cell2">
<span class="data">Image2</span>
<span class="data">Info2</span>
</div>
<div class="cell" id="cell3">
<span class="data">Image3</span>
<span class="data">Info3</span>
</div>
<div class="cell" id="cell4">
<span class="data">Image4</span>
<span class="data">Info4</span>
</div>
</div>