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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 中间自适应 左右固定 中间无width 不能用float 用绝对定位
    查看全部
    0 采集 收起 来源:三列布局

    2016-03-30

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

    2016-03-30

  • 两列 固定布局
    查看全部
    0 采集 收起 来源:二列布局

    2016-03-30

  • 两列 自适应的布局
    查看全部
    0 采集 收起 来源:二列布局

    2016-03-30

  • CSS中脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。   需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。 所以 用 clear :both:清除浮动 是footer这个盒子 不会紧跟在 top盒子之后,而是跟在main之后。
    查看全部
    0 采集 收起 来源:实践题

    2016-03-30

  • 三列布局: 左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定位:margin:0 (right宽度+间隙宽度)px 0 (left宽度+间隙宽度)px; 上右下左,左右调节大小可以紧邻,也可以有间距 .left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;} margin不为0注意加单位
    查看全部
    0 采集 收起 来源:编程练习

    2016-03-30

  • <style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{height:100px;background:#ccc;margin:0 auto} .main{width:800px;height:600px;background:#900;margin:0 auto} .left{ width:200px;height:600px;background:blue;} .right{width:73%;height:600px;background:#f00;position:absolute;margin:0 0 0 210px;} .foot{height:100px;background:#333;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>
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • <!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:#ccc;margin:0 auto} .main{width:800px;height:600px;background:#900;margin:0 auto} .left{ width:200px;height:600px;background:blue} .right{height:600px;background:#f00;float:right;} .foot{height:100px;background:#333;} </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

  • <style> body{ margin:0; padding:0; font-size:30px; color:#fff; } .top{ width:100%; height:100px; background:#ccc; } .main { height:150px; background:red; } .left { width:150px; height:150px; background:blue; position:absolute; left:0; top:100px; } .right { height:150px; background:#099; margin-left:155px; } .foot { background:orange; height:50px; width:100%; } </style>
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • CSS中脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。   需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。 所以 用 clear :both:清除浮动 是footer这个盒子 不会紧跟在 top盒子之后,而是跟在main之后。
    查看全部
    0 采集 收起 来源:实践题

    2016-03-29

  • 三列布局: 左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定位:margin:0 (right宽度+间隙宽度)px 0 (left宽度+间隙宽度)px; 上右下左,左右调节大小可以紧邻,也可以有间距 .left{ width:200px; height:600px; background:#ccc; position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; right:0; background:#FCC;} margin不为0注意加单位
    查看全部
    0 采集 收起 来源:编程练习

    2016-03-29

  • position: absolute 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 relative 生成相对定位的元素,相对于其正常位置进行定位。 因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。 static 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 inherit 规定应该从父元素继承 position 属性的值。
    查看全部
    0 采集 收起 来源:三列布局

    2018-03-22

  • float:left ->左浮动(定义元素在哪个方向浮动) float:right ->右浮动 text-align:left; -> 文字的对齐是左对齐
    查看全部
    1 采集 收起 来源:编程练习

    2018-03-22

  • 两列布局: 1、宽度自适应(用的比较少), 1.1因为宽度要自适应,所以要设置左侧left的width:xx%; 1.2需要左右排列,所以设置float:left; 1.3另一侧right也设置width和float(left和right都可以吧,再微调) 2、固定宽度(☆☆☆☆☆)left和right增加一个父div#main,设置这个main的width,以及margin 0 auto; 2.1如果要精确控制left和right的宽度,可以使用px【就是说也可以使用%粗略控制。】
    查看全部
    0 采集 收起 来源:二列布局

    2016-03-29

  • .main margin:0 auto水平居中
    查看全部
    0 采集 收起 来源:编程练习

    2016-03-29

举报

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

微信扫码,参与3人拼团

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

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