HTML

CSS

BFC

根元素 html
position: fixed | absolute;
float: left | right;
overflow: hidden | auto | scroll;
display: flex | table-cell | inline-block;

清除浮动

.clearfix::after {
	content: '';
	display: block;
	height: 0;
	clear: both;
}

响应式原理

媒体查询的书写顺序

  1. 如果从小到大判断,那么也从小到大书写

    Untitled

  2. 如果从大到小判断,那么也从大到小书写

    Untitled

PC、移动端适配方案

布局

圣杯布局