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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 因为main包含的块全都设置了浮动,而浮动和绝对定位会使块脱离标准文档流,但是head仍在文档流中 所以foot会忽略main的所有块而贴着head块 方法1: .main{ width:860px;height:600px;margin:0 auto;background:#9FC;} 方法2:.footer{ height:50px; background:#9F9; margin:600px 0 0 0;} 方法3:.footer{width:100%; height:50px; background:#9F9; position:absolute;top:700px;} 方法一:.footer{ width:100%;height:50px; background:#9F9; overflow:hidden;} 方法二:.footer{height:50px; background:#9F9; clear:both;}
    查看全部
    0 采集 收起 来源:实践题

    2016-11-11

  • 清除浮动的方法: 一:clear:both(/left/right); 二:overflow:hidden;width:100%; 三:给main设置高度:.main{width:960px; {height:600px};margin:0 auto;} 四:margin:600px 0 0 0; 因为main包含的块全都设置了浮动,而浮动和绝对定位会使块脱离标准文档流,但是head仍在文档流中 所以foot会忽略main的所有块而贴着head块 方法1: .main{width:860px;height:600px;margin:0 auto;background:#9FC;} 方法2:.footer{ height:50px; background:#9F9; margin:600px 0 0 0;} 方法3:.footer{width:100%; height:50px; background:#9F9; position:absolute;top:700px;}
    查看全部
    0 采集 收起 来源:实践题

    2016-11-11

  • 3列布局-特殊案例 左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定义去掉,加上左右的margin值,margin:0 310px 0 210px; 上右下左(中间空一点出的话,增加margin属性值便可以实现) 左右两侧布局固定宽度,中间部分宽度自适应。则需要采用绝对定位来实现,把左右设置为绝对定位
    查看全部
    0 采集 收起 来源:三列布局

    2016-11-10

  • float:left;左定位 float:right;右定位 margin:0 310px 0 210px;(使main水平居中在浏览器中央,并且与左右div有10px的间距) position:absolute;top:0;right:0px;(使right定位在右侧) position:absolute; left:0; top:0;(使left部分绝对定位)
    查看全部
    0 采集 收起 来源:编程练习

    2016-11-10

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

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

    2018-03-22

  • 三列: 1、左右两个设定固定宽度(width:...)/中间的不设置宽度这一项; 2、左右两侧都要利用:positon:absolute 3、左侧:left:0;top:0 / 右侧:right:0;top:0
    查看全部
    0 采集 收起 来源:三列布局

    2016-11-09

  • 网页布局清除固有格式--margin:0;padding:0 让网页居中--margin:0 auto;
    查看全部
    0 采集 收起 来源:二列布局

    2016-11-09

  • div设置 width(宽度)、height(高度)、background(背景)、如果需要水平居中(margin:0 auto;)
    查看全部
    0 采集 收起 来源:编程练习

    2016-11-09

  • div居中布局 div{margin:0 auto;}
    查看全部
    0 采集 收起 来源:练习题

    2016-11-09

  • div是一个容器,可以划分出一个区域 magin:0 padding:0 是重新刷新布局
    查看全部
    0 采集 收起 来源:一列布局

    2016-11-09

  • 关键语句: .main { width: 100%; height: 800px; background: red; position: relative; /*父元素设置为相对定位*/ /*或者可以有另外一种写法:去掉main元素中的相对定位 .main{width:100%;height:800px;background:red;} .left{widht:200px;height:800px;background:blue;position:absolute;left:0;top:200px;} 这里的位置是相对于浏览器的位置。*/ } .left { width: 200px; height: 800px; background: blue; position: absolute; left: 0; top: 0; /*子元素用绝对定位,用父元素的位置作为参照来定位子元素*/ } /*因为要求4.中“兼容ie6”,所以不能用浮动*/ .right { width: 100%; height: 800px; background: green; margin-left: 210px; /*离浏览器边界210px,即离left元素10px*/
    查看全部
    0 采集 收起 来源:编程挑战

    2016-11-09

  • <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>三列布局</title> <style> .main, .left, .right {height:200px;} .main {width:100%;background:red;float:left} .left {width:200px; background:green;float:left} .right{width:300px; background:blue;float:left} .center {margin: 0 310px 0 210px;height:200px; background:white;} .left {margin-left:-100%;} .right{margin-left:-300px;} </style> </head> <body> <div class="demo1"> <div class="left1">position left 0</div> <div class="center1">margin 0 rightpx 0 leftpx</div> <div class="right1">postion right 0</div> </div> <div class="demo2"> <div class="main"> <div class="center">中间的内容</div> </div> <div class="left">left</div> <div class="right">right</div> </div> <h1>第二种写法可能更好一点</h1> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • 文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位
    查看全部
    0 采集 收起 来源:评测题目

    2016-11-08

  • 绝对定位并不占标准文档流位置,所以margin:0 310px 0 210px
    查看全部
    0 采集 收起 来源:编程练习

    2016-11-08

举报

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

微信扫码,参与3人拼团

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

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