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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 绝对定位;position:absolute;left:0; top:0

    查看全部
    0 采集 收起 来源:编程练习

    2019-06-05

  • float 浮动

    查看全部
    0 采集 收起 来源:编程练习

    2019-06-05

  • <!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}

    div{ text-align:center; font-weight:bold}

    .main,.footer{ width:960px; 【任务1】}

    .head{ width:100%; height:100px; background:#ccc}

    .main{ height:600px; background:#FCC}

    .footer{ height:50px; background:#9CF}

    </style>

    </head>


    <body>

    <div class="head">head</div>

    <div class="main">main</div>

    <div class="footer">footer</div>

    </body>

    </html>

    内容居中对齐

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

    2019-06-04

  • 一列布局,内容不宜多行,采用固定宽度

    查看全部
    0 采集 收起 来源:一列布局

    2019-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;}

    .top{height:200px;background-color:#CBCBCB;}

    .main{height: 800px;background-color: #FC0501;position:relative;left: 0px;}

    .left{height: 800px;width: 200px;background-color: #120FFC;position: absolute;left: 0px;top: 0px;}

    .right{height: 800px;background-color: #99CB99;position: relative;left: 210px;}

    .foot{height:100px;background-color:#FE6535;}

    </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 采集 收起 来源:编程挑战

    2019-05-22

  • footer 没有浮动元素,又没有清除浮动,就占据了中间位置,所以,想让footer 在他自己的位置,就先清除浮动(clear:both)

    查看全部
    0 采集 收起 来源:实践题

    2019-05-17

  • 可以让元素脱离文档流()  float 和 绝对定位

    查看全部
    0 采集 收起 来源:评测题目

    2019-05-13

  • position:absolute;left:0;top:0; position:absolute;right:0;top:0;
    查看全部
    0 采集 收起 来源:编程练习

    2019-05-10

  • float:left; float:right;
    查看全部
    0 采集 收起 来源:编程练习

    2019-05-10

  • margin:0 auto;
    查看全部
    0 采集 收起 来源:编程练习

    2019-05-10

  • 三列布局

    三列布局使得中间一列自适应,不能使用float控制,

    要对左边一列设置position:absolute;left:0;top:0;

    右边一列设置position:absolute;right:0;top:0;

    中间一列设置margin,margin-left:左边一列的宽度;margin-right:右边一列的宽度;


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

    2019-04-19

  • 常见分列布局:一列布局,二列布局,三列布局,混合布局。

    查看全部
    0 采集 收起 来源:内容简介

    2019-04-13

  • 相对定位(position:relative),不可以脱离文本流

    查看全部
    0 采集 收起 来源:评测题目

    2019-04-08

  • .top{width:100%;background:grey;height:100px;}

    .main{height:300px;width:100%;float:left;overflow:hidden;background:red;}

    .left{width:30%;height:300px;background:blue;float:left;position:absolute;left:0px;top:100px;}

    .right{width:67%;height:100%;background:green;float:right;}

    .foot{width:100%;height:70px;background:orange;clear:both;}


    查看全部
    2 采集 收起 来源:编程挑战

    2019-04-08

  • left那里多打了个} 想要左右有空隙则和小于父元素就行了

    查看全部
    0 采集 收起 来源:编程练习

    2019-04-07

举报

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

微信扫码,参与3人拼团

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

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