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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 块挨着块 块嵌套着块 块压着块
    查看全部
    0 采集 收起 来源:混合布局

    2015-07-12

  • 混合布局 嵌入子布局 可以在块中增加布局
    查看全部
    0 采集 收起 来源:混合布局

    2015-07-12

  • 这个<!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:630px; height:600px; background:#FCC; float:right;}/*右浮动样式*/ </style> </head> <body> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> </body> </html>
    查看全部
    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; 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:630px; height:600px; background:#FCC; float:right;}/*右浮动样式*/ </style> </head> <body> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> </body> </html>
    查看全部
    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; 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> </html>
    查看全部
    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} 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-03-22

  • .top{height:100px; background:#ccc} .left{ width:200px; height:500px; background:blue; } .right{ margin-left:210px;height:500px; background:#9C9;} .foot{ height:50px; background:#F63 }
    查看全部
    0 采集 收起 来源:编程挑战

    2015-07-11

  • 左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定义auto,定位:margin值:margin:0 310px 0 210px; 上右下左
    查看全部
    0 采集 收起 来源:编程练习

    2015-07-11

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

    2015-07-11

  • 文档流:将窗体自上而下分成一行行, 并在每行中按从左至右的顺序排放元素,即为文档流. 浮动(float)和 绝对定位(position:absolute)-->脱离文档流
    查看全部
    0 采集 收起 来源:评测题目

    2018-03-22

  • 左右浮动:float:left float:right 左右两列布局,可以先设置一个父级。div宽度会被父级限制,可以设父类的宽度像素值。
    查看全部
    0 采集 收起 来源:二列布局

    2015-07-11

  • margin:0 auto div居中 margin:0;padding:0 清除样式
    查看全部
    0 采集 收起 来源:一列布局

    2015-07-11

  • css网络布局: 百度首页:结构简单 新浪:门户网站,板块构成 布局:板式布局 淘宝:电商网站,展示商品信息 特点:自适应宽度 网页长度可无限延长 突破传统纸媒的布局 结构:头部 尾部 内容主题(分栏---一列布局 二列布局 三列布局 混合布局)
    查看全部
    0 采集 收起 来源:内容简介

    2015-07-11

  • clear:both overflow:hidden 清除浮动
    查看全部
    0 采集 收起 来源:实践题

    2015-07-11

  • position:absolute;绝对定位 position:absolute;left:0;top:0; position:absolute;right:0;top:0; margin:0 auto; 水平居中
    查看全部
    0 采集 收起 来源:编程练习

    2015-07-11

举报

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

微信扫码,参与3人拼团

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

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