更常见实用的布局情势:上、中左、中右、底四个模块,宽度760px,整体页面居中。
结构代码,top left right foot 四个模块全部前几立、互不嵌套。
<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宽并居中;内层left_module定义为实际的左侧宽度280px,且尽对定位,top值即是更部定义的高度。
这种方法的利益是:left right 两个模块代码片段可以互换调剂显示优先级。
#left { width:760px; margin:auto;}
#left_module { width:280px; position:absolute; top:100px; padding:10px;}
方法B: 外层left定义为760px宽并居中,相对浮动于top;内层left_module定义为实际的左侧宽度280px,且尽对定位。
这种方法的利益是:更部的高度可以自由延伸。
#left { width:760px; margin:auto; position:relative;}
#left_module { width:280px; position:absolute; padding:10px;}
外层right定义为760px宽并居中,内层right_module定义为实际的右侧宽度440px,应用margin语法居左。right_module定义的背风景是实际右侧的背风景,定义的高度就是实际中间模块的高度;right的背风景就是实记凹阁侧的背风景。
#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;}
测试环境IE6.0和FF1.5,都是更俗的语法,非常简略,实用有限,可做技巧参考。
不用float实现模块居中布局,谢谢阅读。