更常見實(shí)用的布局情勢(shì):上、中左、中右、底四個(gè)模塊,寬度760px,整體頁面居中。
結(jié)構(gòu)代碼,top left right foot 四個(gè)模塊全部前幾立、互不嵌套。
<div>head</div>
<div>
<div>left</div>
</div>
<div>
<div>right</div>
</div>
<div >foot</div>
更部屬于慣例定義。
#top { height:100px; background:#ccc; width:760px; margin:auto; text-align:center;}
方法A: 外層left定義為760px寬并居中;內(nèi)層left_module定義為實(shí)際的左側(cè)寬度280px,且盡對(duì)定位,top值即是更部定義的高度。
這種方法的利益是:left right 兩個(gè)模塊代碼片段可以互換調(diào)劑顯示優(yōu)先級(jí)。
#left { width:760px; margin:auto;}
#left_module { width:280px; position:absolute; top:100px; padding:10px;}
方法B: 外層left定義為760px寬并居中,相對(duì)浮動(dòng)于top;內(nèi)層left_module定義為實(shí)際的左側(cè)寬度280px,且盡對(duì)定位。
這種方法的利益是:更部的高度可以自由延伸。
#left { width:760px; margin:auto; position:relative;}
#left_module { width:280px; position:absolute; padding:10px;}
外層right定義為760px寬并居中,內(nèi)層right_module定義為實(shí)際的右側(cè)寬度440px,應(yīng)用margin語法居左。right_module定義的背風(fēng)景是實(shí)際右側(cè)的背風(fēng)景,定義的高度就是實(shí)際中間模塊的高度;right的背風(fēng)景就是實(shí)記凹閣側(cè)的背風(fēng)景。
#right { width:760px; margin:auto; background:#E8E8E8;}
#right_module { width:440px; background:#F0F0F0; height:360px; margin:0 0 0 auto; padding:10px;}
底部也屬于慣例定義。
#foot { height:100px; background:#ccc; width:760px; margin:auto; text-align:center;}
測(cè)試環(huán)境IE6.0和FF1.5,都是更俗的語法,非常簡略,實(shí)用有限,可做技巧參考。
不用float實(shí)現(xiàn)模塊居中布局,謝謝閱讀。
查看更多寧波網(wǎng)站制作公司布局模塊float