-
layout查看全部
-
kankan查看全部
-
shishi查看全部
-
Div{width:800px; height:500px; margin:0 auto},上面这段样式,可以让div在页面的JUZHONG查看全部
-
1、让div居中:margin:0 auto; 2、典型单列布局:头部top 主体main 尾部foot 三个<div> 3、清除默认样式:;body{margin:0;padding:0}查看全部
-
.top{height:200px ;background-color:#ccc;} .main{width:1000px ;height:800px;background-color:red;margin:0 auto;position:relative;} .left{height:800px;width:200px;background-color:blue;position:absolute;top:0;left:0;} .right{height:800px;background-color:green; ;margin-left:210px;} .foot{height:100px ;background-color:orange查看全部
-
<style> body{ margin:0; padding:0; font-size:30px; font-weight:bold} div{ text-align:center; line-height:50px} .top{ height:100px;background:#9CF} .head,.main{ width:960px; margin:0 auto;} .head{ height:100px; background:#F90} .left{ width:220px; height:600px; background:#ccc; float:left;} .right{ width:740px; height:600px;background:#FCC; float:right} .r_sub_left{ width:540px; height:600px; background:#9C3; float:left} .r_sub_right{ width:200px; height:600px; background:#9FC; float:right;】} .footer{ height:50px; background:#9F9; clear:both;} </style>查看全部
-
混合布局查看全部
-
.left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310 0 210; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;}查看全部
-
1.使用margin:0 auto;使得div居中; 2.使用float为left和right使得两个div处于同一行; 3.使用百分比宽度实现宽度自适应,使用值使得宽度固定; 4.使用position:absolute实现div绝对定位,在三列布局中使得最左和最右绝对定义,中间可自适应; 5.混合布局可使用嵌套的方式,在横向header、main和footer,然后在main中使用两列或三列布局。查看全部
-
三列自适应宽度: 左右绝对定位 中间设定margin查看全部
-
混合布局。查看全部
-
absolute脱离文档流,但限制成文本宽度查看全部
-
2-1 一列布局 1、让div居中:margin:0 auto; 2、典型单列布局:头部top 主体main 尾部foot 三个<div> 3、清除默认样式:;body{margin:0;padding:0}查看全部
-
一列布局不适于存放文本,太长容易看走眼。 两列布局自适应,使用百分比。 三列布局,使用绝对定位和margin。 盒子之间的三种关系: 1、相邻 2、嵌套 3、叠加 我们要做的就是摆放好盒子的位置。 关于页面上元素的加载顺序: 元素是从前往后依次加载的,要想先加载就要写在前面。 通常left部分是作为菜单,right部分作为主体内容,我们打开网页,都希望先看到 主体内容,所以有意把right部分写在left部分前面,然后把right部分右浮动,left部分左浮动, 这样布局不会出现问题,而且还解决了IE6下右浮动换行的问题。查看全部
举报
0/150
提交
取消