1. 程式人生 > >盒子模型與布局模型

盒子模型與布局模型

add content 相對 html float border 偏移 mar tom

外邊距:margin

邊框:border

內填充:padding

內容:content

三種基本布局模型

流動模型:Flow html默認的就是流動模型

浮動模型:Float 通過float浮動讓多個塊元素一行  

層模型:Layer  

絕對定位 position: absolute;  脫離文檔流,通過left,right,top,bottom屬性相對於具有定位屬性的父元素進行絕對定位,如果沒有則相對於body,即瀏覽器窗口

相對定位 position: relative;   首先按static和float方式生成一個元素,並且元素像層一樣浮動起來,相對於以前的位置移動,偏移前位置保留不動

固定定位 position: fixed;   相對於視圖窗口偏移,固定在屏幕中視圖中的某個位置

盒子模型與布局模型