在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
最常见实用的布局形式:上、中左、中右、底四个模块,宽度760px,整体页面居中。 结构代码,top left right foot 四个模块全部独立、互不嵌套。 <div id="top">head</div> <div id="left"> <div id="right"> <div id="foot" >foot</div> 顶部属于常规定义。 #top { height:100px; background:#ccc; width:760px; margin:auto; text-align:center;} 方法A: 外层left定义为760px宽并居中;内层left_module定义为实际的左侧宽度280px,且绝对定位,top值等于顶部定义的高度。 #left { width:760px; margin:auto;} 方法B: 外层left定义为760px宽并居中,相对浮动于top;内层left_module定义为实际的左侧宽度280px,且绝对定位。 #left { width:760px; margin:auto; position:relative;} 外层right定义为760px宽并居中,内层right_module定义为实际的右侧宽度440px,使用margin语法居左。right_module定义的背景色是实际右侧的背景色,定义的高度就是实际中间模块的高度;right的背景色就是实际左侧的背景色。 #right { width:760px; margin:auto; background:#E8E8E8;} 底部也属于常规定义。 #foot { height:100px; background:#ccc; width:760px; margin:auto; text-align:center;} 测试环境IE6.0和FF1.5,都是最俗的语法,非常简单,实用有限,可做技术参考。
|
请发表评论