css定位与浮动

1,定位

普通流

浮动

绝对布局

position : static :偏移量和z-index没有效果  

              relative

             absolute---不再占有位置

             fixed     ---位置固定,不再占有位置,但是不管页面的滚动,都固定在这个位置

overflow

clip

vertical-align

z-index :100; 数值越大,越覆盖在上面 

left-top-right-buttom:20px 四个方向的偏移

2, 浮动

float :left right none inherit(从父级中继承的)

clear: left right both inherit; 清除浮动

浮动之后不占位置了(相对于没有浮动的东西)

浮动会适应容器的大小,开始浮动

原文地址:https://www.cnblogs.com/Coder-Pig/p/5901668.html