一、清除浮动
    .clearfix::after {
    content: “”;
    display: block;
    height: 0;
    clear: both;
    }

    二、伪元素
    ::after、::before

    三、定位
    position: absolute;
    position: relative;
    position: fixed;