最常见实用的布局形式:上、中左、中右、底四个模块,宽度760px,整体页面居中。 结构代码,top left right foot 四个模块全部独立、互不嵌套。 <div id=”top”>head</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,都是最俗的语法,非常简单,实用有限,可做技术参考。
<div id=”left”>
<div id=”left_module”>left</div>
</div>
<div id=”right”>
<div id=”right_module”>right</div>
</div>
<div id=”foot” >foot</div>
这种方法的好处是:left right 两个模块代码片断可以互换调整显示优先级。
#left_module { width:280px; position:absolute; top:100px; padding:10px;}
这种方法的好处是:顶部的高度可以自由延伸。
#left_module { width:280px; position:absolute; padding:10px;}
#right_module { width:440px; background:#F0F0F0; height:360px; margin:0 0 0 auto; padding:10px;}
不用float实现模块居中布局_css教程
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 不用float实现模块居中布局_css教程
相关推荐
-      去掉IE地址栏、工具栏、菜单栏
-      QQ强制聊天代码
-      HTML常用网页特效
-      html页面传值问题
-      window.open实现网页对话框
-      CSS设置图片透明效果
-      使用CSS解决文章换行问题
-      div中文字垂直居中