常用清除浮动:
.clearfix::after{ content: ''; clear: both; display: block; }
尽量不要用overflow:hidden;
实现上下左右绝对居中(比较简单的写法)
display: flex; justify-content: center;align-items: center;