css flex flex-flow属性为flex-direction属性和flex-wrap属性的简写形式,默认值为row nowrap。
flex-flow:row-reverse wrap-reverse;相当于flex-direction: row-reverse;flex-wrap:wrap-reverse;
<style>
.boxs
{
width:60%;
height:100px;
border:1px solid #333;
display:flex;
flex-flow:row-reverse wrap-reverse;
}
.boxs div
{
width:30%;
}
</style>
<div class="boxs">
<div style="background-color:#ffc5c5;" >子元素A</div>
<div style="background-color:#7171f7;" >子元素B</div>
<div style="background-color:#c6d8c6;" >子元素C</div>
<div style="background-color:#c9b0fb;" >子元素D</div>
</div>
例子