<div style="width:100px;height:100px;position:absolute;z-index:99; top:0; left:0; right:0; bottom:0;margin:1px 3px 4px 5px"></div> width:长度 height:高度 需要用到定位的时候,必须设置position属性。
position:位置(absolute绝对位置,相对于body)
z-index:深度。 margin:距离。其实基本大部分的标签都可以用来调整位置。 设置后上述两样属性后,就可以用left,top,bottom,right来定位了。
left:0; //在最左边; right:0;//在最右边; top:0;//在最上面; bottom:0;//在最下面; 罗嗦几句,如果要做一个永远居底的div,其实不需要JS代码,只需要用bottom:0;就可以了。 4个属性里面,一般一次只会用两个。 如:左上角: left:0;top0;