为了这个问题,我将把它称为“方形五块”布局(见图),但我遇到了麻烦,因为我尝试过的所有实验都没有正确包装。
我已经看到了同样的布局使用浮动,但我希望未来-证明它一点,并使用更最新的方法-因此挠曲盒。我已经尝试过搜索这个模式,但是似乎没有一个一致的名称,所以找到类似的例子是很困难的。
我也使用视口单元来确保块保持完全方形,所有这些都是基于视口宽度(vw)单位的。
div { width: 25vw; height: 25vw; }
div:first-of-type { width: 50vw; height: 50vw; }关键的特点是所有的区块应该是方形的,但是第一个区块的大小应该是其余四个的总和。以前有没有人见过这样的布局,或者曾经做过这样的设计?

谢谢!!
发布于 2016-04-12 12:26:01
嵌套的柔性盒在这里可以与媒体查询结合使用。
Codepen Demo with media query
基本上:
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
.parent {
width: 100vw;
display: flex;
}
.col {
flex: 0 0 50vw;
height: 50vw;
background: blue;
}
.wrap {
display: flex;
flex-wrap: wrap
}
.box {
flex: 0 0 25vw;
height: 25vw;
}
.red {
background: red;
}
.pink {
background: pink;
}
.orange {
background: orange;
}
.grey {
background: grey;
}<div class="parent">
<div class="col"></div>
<div class="col wrap">
<div class="box red"></div>
<div class="box pink"></div>
<div class="box orange"></div>
<div class="box grey"></div>
</div>
</div>
发布于 2016-04-12 12:53:26
请参阅下面的代码并展开结果。我用过柔性箱
body {
margin: 0;
height: 100vh;
width: 100vw;
}
.wrapper {
height: 100%;
}
.layout.horizontal,
.layout.vertical {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.layout.horizontal {
-ms-flex-direction: row;
-webkit-flex-direction: row;
flex-direction: row;
}
.layout.vertical {
-ms-flex-direction: column;
-webkit-flex-direction: column;
flex-direction: column;
}
.flex {
-ms-flex: 1 1 0.000000001px;
-webkit-flex: 1;
flex: 1;
-webkit-flex-basis: 0.000000001px;
flex-basis: 0.000000001px;
}
.box {
color: #fff;
text-align: center;
}
.box.blue {
background: #312783;
}
.box.green {
background: #0B983A;
}
.box.yellow {
background: #E1BD48;
}
.box.pink {
background: #D2007F;
}
.box.orange {
background: #EB6053;
}
@media all and (max-width: 768px) {
.change-in-responsive.layout.horizontal {
-ms-flex-direction: column;
-webkit-flex-direction: column;
flex-direction: column;
}
}<div class="layout horizontal wrapper change-in-responsive">
<div class="box large flex blue">1</div>
<div class="flex layout vertical">
<div class="flex layout horizontal">
<div class="box green flex">2</div>
<div class="box yellow flex">3</div>
</div>
<div class="flex layout horizontal">
<div class="box pink flex">4</div>
<div class="box orange flex">5</div>
</div>
</div>
</div>
https://stackoverflow.com/questions/36572906
复制相似问题