-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>混合布局编程挑战</title> <style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{ height:100px; background-color:gray;} .main{ height:600px; background:red; } .left{ width:200px; height:600px; background-color:blue; position:absolute; top:100px; left:0;} .right{ height:600px; background-color:yellow; margin-left:210px;} .foot{ height:100px; background-color:#ccc;} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="right">right</div> <div class="left">left</div> </div> <div class="foot">foot</div> </body> </html>查看全部
-
1.使用margin:0 auto;使得div居中; 2.使用float为left和right使得两个div处于同一行; 3.使用百分比宽度实现宽度自适应,使用绝对值使得宽度固定; 4.使用position:absolute实现div绝对定位,在三列布局中使得最左和最右绝对定义,中间可自适应; 5.混合布局可使用嵌套的方式,在横向header、main和footer,然后在main中使用两列或三列布局。 6.宽度自适应,左侧固定宽度右侧自适应,父盒子position:relative;左侧子盒子position:absolute;右侧margin-left。查看全部
-
margin:0 auto; 让div水平居中查看全部
-
想要混合布局,就要在相应的模块中分出上下级. <div>/*横排*/ <div>/*列*/ <div> 别忘记进行浮动; 子栏目下还可以进行分栏.就可以使中间层面变成三列结构; 在块中科分割小模块,可以变得更加详细.查看全部
-
三行布局 左右两个div要用position的absolute来绝对定位查看全部
-
特殊的三列布局:左右固定,中间自适应情况,左右使用绝对定位来实现,中间用margin实现. 三列布局:左侧和右侧固定,中间自适应: 左侧{position:absolute;left:0;top:0} 右侧{position:absolute;top:0;right:0} 中间{margin-left:100px;margin-right:100px;}查看全部
-
一列布局通常作为网站的首页。不适合放置多行文本。一般固定宽度。 首先,清除默认样式。 水平居中 margin:0 auto;查看全部
-
三行布局 左右两个div要用position的absolute来绝对定位查看全部
-
网业设计的特点: 1.宽度自适应 2.网业的长度理论上可以无限延长 分栏又称为分列:一、二、三、列布局,混合布局。查看全部
-
任务1:完成顶部(top)、底部(foot)宽度自适应 任务2:中间分为2两栏,其中,左侧(left)宽度为200px, 右侧(right)宽度自适应 任务3:要求右侧(right)先加载,左侧(left)后加载 任务4:编写的代码要兼容ie6查看全部
-
1.请在右侧编辑器补充完整样式,完成任务1,使div在浏览器中水平居中; 2.请在右侧编辑器补充完整样式,完成任务2,使div左浮动; 3.请在右侧编辑器补充完整样式,完成任务3,使div右浮动; 4.请在右侧编辑器补充完整样式,完成任务4,清除浮动查看全部
-
1.请补充右侧编辑器的任务1,使left部分绝对定位; 2.请补充右侧编辑器的任务2,使main水平居中在浏览器中央,并且与左右div有10px的间距 3.请补充右侧编辑器的任务3,使right定位在右侧查看全部
-
要求main和footer在浏览器中水平居中查看全部
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>混合布局编程挑战</title> <style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{width:100%; height:100px; background:#999; margin:0 auto;} .main{height:800px; background:red; position:relative;} .left{width:200px; height:800px; background-color:#456; position:absolute;left:0;top:0px; } .right{height:800px; background-color:#110; margin-left:210px; } .foot{width:100%; height:50px; background:#222; margin:0 auto;} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="right">right</div> <div class="left">left</div> </div> <div class="foot">foot</div> </body> </html>查看全部
-
三列布局1查看全部
举报
0/150
提交
取消