float 与 flex

概述

float 与 flex 均能实现九宫格布局

HTML

flex

flex 需要在父视图中设置

.boxFather {
    background-color: pink;
    width: 500px;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
}

float

float 需要在子视图中设置
并且使用 float 需要在后面主动清除浮动

.boxFather {
    background-color: pink;
    width: 500px;
    height: 500px;
}

.box {
    width: 110px;
    height: 60px;
    float: left;
    width: calc(calc(100%/3) - 10px);
    margin-left: 10px;
    margin-bottom: 10px; 
}

.boxFather::after {
    clear: both;
    content: "";
    display: block;
}

你可能感兴趣的:(float 与 flex)