clearfix 清除浮动

    /* bootstrap 使用的 clearfix */

    .clearfix {
      *zoom: 1;
    }
    .clearfix:before,
    .clearfix:after {
      display: table;
      line-height: 0;
      content: "";
    }
    .clearfix:after {
      clear: both;
    }

你可能感兴趣的:(clearfix 清除浮动)