img{
display: block;
width: 100%;
/*设置宽充满 高自适应*/
height: auto;
}
.root{
display: flex;
flex-direction: column;
/*主轴对其方式*/
justify-content: center;
/*换行*/
flex-wrap: wrap;
/*交叉轴位置*/
align-items: center;
/*交叉轴位置换行有效*/
align-content: center;
}
.son1{
/*从小到大排序*/
order: 2;
/*子元素大小占比分配空余控件 总数是子元素之和*/
flex-grow: 1;
/*按比例压缩 压缩像素 / 子元素压缩占比之和 * 对应占比 */
flex-shrink: 1;
/*优先于当前daom元素的 width或height
flex-direction: column; 代表 width
flex-direction: row; 代表 height
*/
flex-basis: 100px;
/* 等价于 flex-grow flex-shrink flex-basis */
flex: 0 0 auto;
/*去掉父元素布局align-items: center; 修改对应属性*/
align-self: left;
}
.son1{
order: 0;
flex-grow: 2;
}
.son1{
order: 1;
flex-grow: 1;
}
网友评论