为了账号安全,请及时绑定邮箱和手机立即绑定

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • <!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>
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • 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。
    查看全部
    0 采集 收起 来源:编程挑战

    2015-05-24

  • margin:0 auto; 让div水平居中
    查看全部
    0 采集 收起 来源:一列布局

    2015-05-24

  • 想要混合布局,就要在相应的模块中分出上下级. <div>/*横排*/ <div>/*列*/ <div> 别忘记进行浮动; 子栏目下还可以进行分栏.就可以使中间层面变成三列结构; 在块中科分割小模块,可以变得更加详细.
    查看全部
    0 采集 收起 来源:混合布局

    2018-03-22

  • 三行布局 左右两个div要用position的absolute来绝对定位
    查看全部
    0 采集 收起 来源:混合布局

    2015-05-24

  • 特殊的三列布局:左右固定,中间自适应情况,左右使用绝对定位来实现,中间用margin实现. 三列布局:左侧和右侧固定,中间自适应: 左侧{position:absolute;left:0;top:0} 右侧{position:absolute;top:0;right:0} 中间{margin-left:100px;margin-right:100px;}
    查看全部
    0 采集 收起 来源:三列布局

    2015-05-24

  • 一列布局通常作为网站的首页。不适合放置多行文本。一般固定宽度。 首先,清除默认样式。 水平居中 margin:0 auto;
    查看全部
    0 采集 收起 来源:一列布局

    2015-05-24

  • 三行布局 左右两个div要用position的absolute来绝对定位
    查看全部
    0 采集 收起 来源:混合布局

    2015-05-24

  • 网业设计的特点: 1.宽度自适应 2.网业的长度理论上可以无限延长 分栏又称为分列:一、二、三、列布局,混合布局。
    查看全部
    0 采集 收起 来源:内容简介

    2015-05-24

  • 任务1:完成顶部(top)、底部(foot)宽度自适应 任务2:中间分为2两栏,其中,左侧(left)宽度为200px, 右侧(right)宽度自适应 任务3:要求右侧(right)先加载,左侧(left)后加载 任务4:编写的代码要兼容ie6
    查看全部
    0 采集 收起 来源:编程挑战

    2015-05-23

  • 1.请在右侧编辑器补充完整样式,完成任务1,使div在浏览器中水平居中; 2.请在右侧编辑器补充完整样式,完成任务2,使div左浮动; 3.请在右侧编辑器补充完整样式,完成任务3,使div右浮动; 4.请在右侧编辑器补充完整样式,完成任务4,清除浮动
    查看全部
    0 采集 收起 来源:实践题

    2015-05-23

  • 1.请补充右侧编辑器的任务1,使left部分绝对定位; 2.请补充右侧编辑器的任务2,使main水平居中在浏览器中央,并且与左右div有10px的间距 3.请补充右侧编辑器的任务3,使right定位在右侧
    查看全部
    0 采集 收起 来源:编程练习

    2015-05-23

  • 要求main和footer在浏览器中水平居中
    查看全部
    0 采集 收起 来源:编程练习

    2015-05-23

  • <!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>
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • 三列布局1
    查看全部
    0 采集 收起 来源:三列布局

    2015-05-22

举报

0/150
提交
取消
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!