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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 宽度自适应用百分比来表示
    查看全部
    0 采集 收起 来源:二列布局

    2016-03-26

  • main的高度设定为600px,就是和left一样高,如果不设置的话,因为left和right都设置为了float,那么元素就会脱离,在没有显示的地方比如最左边和最右边,那么footer就会显示补全。。。所以要么清楚浮动要么给main设置高度
    查看全部
    0 采集 收起 来源:实践题

    2016-03-26

  • <!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%;background:gray;height:100px;} .main{width:100%;background:red;height:500px;position:relative;} .left{width:200px;position:absolute;background:blue;height:500px;top:0;} .right{background:green;height:500px;margin-left:210px;} .foot{width:100%;background:orange;height:100px;} </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 采集 收起 来源:编程挑战

    2018-03-22

  • 1、清除body自适应: body{margin:0;padding:0;} 2、元素自动居中: margin:0 auto; (这时不能在使用浮动属性和绝对定位属性和固定定位属性)
    查看全部
    1 采集 收起 来源:一列布局

    2016-03-25

  • 在使用浮动时,如果是布局自适应的话,宽度必须使用百分比!!!!!!!
    查看全部
    0 采集 收起 来源:三列布局

    2016-03-25

  • 隐藏溢出的条件: 1、拥有overflow:hidden样式的块元素不具有position:relative和position:absolute样式; 2、内部溢出的元素是通过position:absolute绝对定位;
    查看全部
    0 采集 收起 来源:编程挑战

    2016-03-25

  • 三版式模板
    查看全部
    0 采集 收起 来源:编程挑战

    2016-03-24

  • Div{width:800px; height:500px; margin:0 auto} 居中对齐
    查看全部
    0 采集 收起 来源:练习题

    2016-03-24

  • clear:both是用来清除紧邻后面元素的浮动,如前一个div左浮动了,后面的div就会与其同行,假如你不想两个div同行显示,想让后面的div单独一行,你就可以用clear:both,可看做是兄弟元素之间浮动的清除。<br> width:100%;overflow:hidden也可以实现浮动清除,它一般用于清除父元素和子元素之间的浮动影响。
    查看全部
    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:60px;background:#ccc;} .main{height:600px;width:100%;background:red;positive:relative;} .left{ height:600px;width:200px;background:blue;position:absolute;left:0;top:60px;} .right{height:600px;background:#9c9;margin:0 auto 0 210px;} .foot{height:60px;background:orange;} </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> 自适应用margin,定位absolute
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • position:absolute top:xxx left/right:xxx固定位置
    查看全部
    0 采集 收起 来源:编程挑战

    2016-03-24

  • <!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:#000} .top{background:#ccc;height:100px;} .main{background:red;} .left{background:blue;height:500px;width:200px;position:absolute;left:0;top:100px;} .right{background:green;margin-left:210px;height:500px} .foot{background:#f63;height:50px;} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="right">rigth</div> <div class="left">left</div> </div> <div class="foot">foot</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • margin:0 auto 水平居中,放在代码后面
    查看全部
    0 采集 收起 来源:编程练习

    2016-03-24

  • <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%;background:RGB(204,204,204);height:100px;} .main{background:red;overflow:hidden;position:relative;}/*使left以main为基准绝对定位*/ .left{ width:200px;height:500px;background:blue;position:absolute;left:0;top:0;} .right{height:500px;background:RGB(154,204,153);margin-left:210px;} .foot{width:100%;background:RGB(255,102,52);}/*因为是position实现排版,所以不需要清除浮动*/ </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>
    查看全部
    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:grey} .main{background:red;} .left{ left:0;top:100px;height:200px;width:200px;background:blue;position:absolute;} .right{margin-left:210px;height:200px;background:green;} .foot{background:yellow;} </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

举报

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

微信扫码,参与3人拼团

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

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