-
任务 任务1:完成顶部(top)、底部(foot)宽度自适应 任务2:中间分为2两栏,其中,左侧(left)宽度为200px, 右侧(right)宽度自适应 任务3:要求右侧(right)先加载,左侧(left)后加载 任务4:编写的代码要兼容ie6查看全部
-
学习完《混合布局》课程后查看全部
-
学习完《三列布局》查看全部
-
学习完《二列布局》查看全部
-
<!DOCTYPE html......> <html xmins="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv....../> <title>单列布局</title> <style type="text/css"> body{margin:o;padding:o} .top{height:300px;background-color:blue;} .main{width:800px;height:600px;margin:0 auto;} .bottom:{width:800px;height:300px;margin:0 auto;} </style> </head> <body> <div class="top"></div> <div class="main"></div> <div class="bottom"></div> </body> </html> margin:0 auto 垂直为0,水平居中查看全部
-
两栏布局查看全部
-
完成。查看全部
-
代码。查看全部
-
.top{ height:70px;background:#9CF;} .main{height:400px;background:red;position:relative;} .right{height:400px;background:green;margin-left:210px;} .left{width:200px;height:400px;background:blue;position:absolute;top:0;} .foot{height:50px;background:purple;}查看全部
-
关于absolute,和margin,float查看全部
-
float和绝对定位会让元素脱离文档流查看全部
-
先加载右侧和兼容IE6要怎么写啊 不太懂 只写到这些效果出来查看全部
-
右边自适应宽查看全部
-
感觉应该有更好的方法查看全部
-
float:left 是冒号是冒号是冒号!!!!!!查看全部
举报
0/150
提交
取消