flex被称为容器(felx container),所有子元素自动成为容器成员。 flex-direction决定主轴的方向(即项目的排列方向) flex-wrap flex-flow justify-content align-items align-content flex-direction属性:决定主轴的方向(即项目的排列方向) row(默认):主轴水平方向,起点在左端; .content-box{display: flex;flex-direction...
具体如下: .flexcontainer{width:100%;height:100%;position: absolute;left:0px;top:0px;display: flex;flex-direction: column; }.flex1{width:100%;height:8rem;float: left;background:#f00; }.flex2{width:100%;height:4rem;flex:1;float: left;background:#000; }.flex3{width:100%;height:7r...