Div CSS常用布局方式代码集锦_html/css_WEB-ITnose
程序员文章站
2022-04-27 19:12:25
...
现在都Div CSS布局了,本文收集整理了一些常用的DivCSS布局代码,比如两行一列、三行一列、两行两列、三行两列、两行三列、单行三列以及float定位的代码集锦,下面逐一帖出各个布局的代码:
CSS一行一列布局代码:
body{margin:0px;padding:0px;text-align:center;}#content{margin-left:auto;margin-right:auto;width:400px;width:350px;}
CSS两行一列布局代码:
body{margin:0px;padding:0px;text-align:center;}#content-top{margin-left:auto;margin-right:auto;width:400px;width:350px;}#content-end{margin-left:auto;margin-right:auto;width:400px;width:350px;}
CSS三行一列布局代码:
body{margin:0px;padding:0px;text-align:center;}#content-top{margin-left:auto;margin-right:auto;width:400px;width:320px;}#content-mid{margin-left:auto;margin-right:auto;width:400px;width:320px;}#content-end{margin-left:auto;margin-right:auto;width:400px;width:320px;}
Div CSS三行两列布局:
#header{width:700px;margin-right:auto;margin-left:auto;}#bodycenter{width:700px;margin-right:auto;margin-left:auto;}#bodycenter#dv1{float:left;width:280px;}#bodycenter#dv2{float:right;width:410px;}#footer{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}
两行两列布局:
#header{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}#bodycenter{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}#bodycenter#dv1{float:left;width:270px;}#bodycenter#dv2{float:right;width:350px;}
单行两列布局:
#bodycenter{width:700px;margin-right:auto;margin-left:auto;overflow:auto;}#bodycenter#dv1{float:left;width:280px;}#bodycenter#dv2{float:right;width:410px;}
单行三列采用绝对定位CSS代码:
#left{position:absolute;top:0px;left:0px;width:120px;}#middle{margin:20px190px20px190px;}#right{position:absolute;top:0px;right:0px;width:120px;}
单行三列采用float定位的CSS代码:
推荐阅读
-
前端基础??CSS+DIV布局_html/css_WEB-ITnose
-
以下代码如何让DIV先隐藏_html/css_WEB-ITnose
-
这个页面的DIV不随滚动条滚动的效果是怎么做到的?谁能帮我解决下?有现成简单的代码更好_html/css_WEB-ITnose
-
div+css布局实例淘宝分析(三)(2)_html/css_WEB-ITnose
-
关于Div中内容布局_html/css_WEB-ITnose
-
div ul li新手初级问题,有图有代码,高手来看看谢谢._html/css_WEB-ITnose
-
DIV+CSS布局的几点建议_html/css_WEB-ITnose
-
div+css页面布局_html/css_WEB-ITnose
-
div+css:一行布局三(多)个版块_html/css_WEB-ITnose
-
精通CSS+DIV网页样式与布局CSS文字效果_html/css_WEB-ITnose