## float:浮动
> 占个坑先
## position:定位
- relative:相对定位
> 相对于块级元素或行内块元素自身位置进行定位
- absolute:绝对定位
> 相对于最近的已定位的父级元素(relative, absolute, fixed)进行定位,默认是相对于 body
- fixed
> 相对于屏幕视口进行定位(祖先元素不能设置 transform 属性为非 none,否则会以该祖先元素进行定位)[传送门h](https://www.imooc.com/article/67784)
## table:表格
> display: table;
> display: table-cell;