要相对某个元素偏移,必须要设置父元素的position:relative。
设置绝对定位的块 相对与相邻的元素的高度要大于该块的高度
设置绝对定位的块 相对与相邻的元素的高度要大于该块的高度
2015-07-13
#wrap{width:970px;margin:0 auto;}
#mainbody{position:relative;margin-top:15px;}
#left{float:left;width:110px; }
#mid{float:left;width:650px;border:1px solid #999;margin-left:13px;}
#right{positon:absolute;border:1px solid #999;top:0;margin-left:790px;}
#mainbody{position:relative;margin-top:15px;}
#left{float:left;width:110px; }
#mid{float:left;width:650px;border:1px solid #999;margin-left:13px;}
#right{positon:absolute;border:1px solid #999;top:0;margin-left:790px;}
2015-07-12