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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • .top{width:100%; height:50px;background:gray;}

    .main{height:400px;background:red;margin:0 500px 0 400px;}

    .left{width:400px;height:400px;background:blue;position:absolute;left:0;top:50px;}

    .right{width:500px;height:400px;background:cyan;position:absolute;right:0;top:50px;?}

    .foot{width:100%; height:30px;background:orange;}


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

    2018-05-14

  • margin: 0 auto;居中对齐

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

    2018-05-13

  • <!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; font-weight:bold}
    div{ text-align:center; line-height:50px}
    .main{ width:960px; height:600px; margin:0 auto}
    .left{ width:300px; height:600px; background:#ccc; float:left;}}/*左浮动样式*/
    .right{ width:660px; height:600px; background:#FCC; float:right;}/*右浮动样式*/
    </style>
    </head>

    <body>
    <div class="main">
        <div class="left">left</div>
        <div class="right">right</div>
    </div>
    </body>


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

    2018-05-10

  • <!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; font-weight:bold}
    div{ line-height:50px}
    .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;top:0; background:#FCC;}
    </style>
    </head>

    <body>
       
        <div class="left">left</div>
        <div class="main">设计首页的第一步是设计版面布局。就象传统的报刊杂志编辑一样,我们将网页看作一张报纸,一本杂志来进行排版布局。 虽然动态网页技术的发展使得我们开始趋向于学习场景编剧,但是固定的网页版面设计基础依然是必须学习和掌握的。它们的基本原理是共通的,你可以领会要点,举一反三。</div>
        <div class="right">right</div>
    </body>
    </html>


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

    2018-05-10

  • <!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>
    body{ margin:0; padding:0; font-size:30px; font-weight:bold}
    div{ text-align:center; line-height:50px}
    .head, .main, .footer{width:80%;margin:0 auto}
    .head{ height:100px; background:#ccc;margin:0 auto;}
    .main{ height:600px; background:#FCC; margin:0 auto;}
    .footer{ height:50px; background:#9CF;margin:0 auto;}
    </style>
    </head>
     .main,.footer{ width:960px; margin:0 auto;}
    <body>
    <div class="head">head</div>
    <div class="main">main</div>
    <div class="footer">footer</div>
    </body>
    </html>

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

    2018-05-10

  • <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; margin:0 auto;}

    .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 采集 收起 来源:编程练习

    2018-05-10

  • https://img1.sycdn.imooc.com//5af2d6e30001056806660507.jpg

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

    2018-05-09

  • https://img1.sycdn.imooc.com//5af2c6f00001129908570480.jpg

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

    2018-05-09

  • https://img1.sycdn.imooc.com//5af2c6be000183df08580479.jpg

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

    2018-05-09

  • 因为left脱离了文档流,所以right是占满整个main的,但由于right自身设定了margin-left,因此做的红色背景“空”空出来了。

    解决了疑问:right是块级元素,不应该在left下面吗?怎么跑到main右侧去了?

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

    2018-05-09

  • .top{ height:100px;background:#9CF}

    .head,.main{ width:960px; margin:0 auto}

    .head{ height:100px; background:#F90}


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

    2018-05-05

  • 边界的值是按照顺时针的方向,上右下左的顺序

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

    2018-05-03

  • 混合布局

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

    2018-05-03

  • 转载

    5-3 编程挑战

    <style type="text/css">
    body{ margin:0; padding:0; font-size:30px; color:#fff}
    .top{height:100px; background:#ccc;}
    .main{height:500px; background:red; position:relative;}
    .left{width:200px; height:500px; background:blue; position:absolute; top:0; left:0;}
    .right{height:500px; background:green; margin:0 0 0 220px;}
    .foot{height:50px; background:yellow;}
    </style>


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

    2018-05-02

  • 兼容性较好的三种清除浮动方法:<br>
    一、设置父级高度<br>
    二、使用overflow:hidden<br>
    三、使用clear:both

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

    2018-05-02

举报

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

微信扫码,参与3人拼团

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

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