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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 清除浮动 clear:both
    查看全部
    0 采集 收起 来源:实践题

    2017-03-28

  • 1.请补充右侧编辑器的任务1,使left部分绝对定位; 2.请补充右侧编辑器的任务2,使main水平居中在浏览器中央,并且与左右div有10px的间距 3.请补充右侧编辑器的任务3,使right定位在右侧 .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; right:0;top:0; position:absolute; background:#FCC;}
    查看全部
    0 采集 收起 来源:编程练习

    2017-03-28

  • 三栏布局 左右两侧固定,中间自适应 时 左右两侧采用绝对定位 left{position:absolute; left:0; top:0;} right{position:absolute; right:0; top:0;} 中间利用margin与两侧分离,如 左侧width:200px 右侧width:300px 则 middle{margin:0 300px 0 200px;}
    查看全部
    0 采集 收起 来源:三列布局

    2017-03-27

  • display属性常用的有:inline;block;inline-block;
    查看全部
    0 采集 收起 来源:评测题目

    2017-03-27

  • inline元素(span\font\a\em\b)是不支持宽、高属性的.
    查看全部
    0 采集 收起 来源:评测题目

    2017-03-27

  • 自适应的两列布局用的很少,比较常用是固定宽度的两列布局。
    查看全部
    0 采集 收起 来源:二列布局

    2017-03-27

  • 前段工程师就是将艺术和技术完美融合的一个岗位。
    查看全部
    0 采集 收起 来源:内容简介

    2017-03-27

  • 分栏又称为分列,常见的布局有:一列布局,两列布局,三列布局,最常用的是混合布局。
    查看全部
    0 采集 收起 来源:内容简介

    2017-03-27

  • 布局,又称版式布局。是网页UI设计师将有限的视觉元素进行有机的排列组合.
    查看全部
    0 采集 收起 来源:内容简介

    2017-03-27

  • 三列布局 <!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 310 0 210; background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; position:absolute;right 0; background:#FCC;} </style> </head> <body> <div class="left">left</div> <div class="main">设计首页的第一步是设计版面布局。就象传统的报刊杂志编辑一样,我们将网页看作一张报纸,一本杂志来进行排版布局。 虽然动态网页技术的发展使得我们开始趋向于学习场景编剧,但是固定的网页版面设计基础依然是必须学习和掌握的。它们的基本原理是共通的,你可以领会要点,举一反三。</div> <div class="right">right</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; color:#fff} .top{height:50px; background:#ccc;} .main{margin:0 auto; background:red; height:700px;position:relative;} .left{ width:200px;height:700px;background:#0000FE;position:absolute; left:0px; top:0px;} .right{height:700px; background:#9ACC99;margin:0px 0px 0px 210px;} .foot{height:50px; background:#FF6634;} </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

  • 网页布局其实就是块与块之间的关系: 紧挨、嵌套、叠加 紧挨:float 嵌套:父子关系 叠加:z-index。
    查看全部
    0 采集 收起 来源:混合布局

    2017-03-22

  • <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>混合布局训练</title> <style type="text/css"> body{margin: 0;padding: 0;font-weight: bold;} .top{height:100px;background: #ccc;} .main{background: red;overflow: hidden;} .left{width: 200px;height:500px;background: blue;float: left;} .right{background: #9c9;height:500px;margin-left:210px;} .foot{height:50px;background: #F63} </style> </head> <body> <div class="top">top</div> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> <div class="foot">foot</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程挑战

    2018-03-22

  • <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>测试清除浮动-父元素设置overflow:hidden</title> <style type="text/css"> .divcss5{ width:400px;border:1px solid #F00;background:#FF0;margin: 0 auto; overflow: hidden;}/*父元素增加了overflow: hidden;*/ .divcss5-left,.divcss5-right{width:180px;height:100px; border:1px solid #00F;background:#FFF} .divcss5-left{ float:left} .divcss5-right{ float:right} </style> </head> <!-- 一个盒子里使用了CSS float浮动属性,导致父级对象盒子不能被撑开,这样CSS float浮动就产生了 浮动的负作用:1、父元素背景不能显示 2、父元素边框不能撑开 3、父元素的margin padding设置值不能正确显示 清除浮动的三种方法:1、对父级设置适合CSS高度,这种前提是父对象内容高度要能确定并能计算好。 2、增加一个div,设置clear:both 3、父级div定义 overflow:hidden 这三种方法,推荐后两种 --> <body> <div class="divcss5"> <div class="divcss5-left">left浮动</div> <div class="divcss5-right">right浮动</div> </div> </body> </html>
    查看全部
    0 采集 收起 来源:实践题

    2018-03-22

  • <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>测试清除浮动-增加子元素设置clear:both</title> <style type="text/css"> .divcss5{ width:400px;border:1px solid #F00;background:#FF0;margin: 0 auto;} .divcss5-left,.divcss5-right{width:180px;height:100px; border:1px solid #00F;background:#FFF} .divcss5-left{ float:left} .divcss5-right{ float:right} .clear{clear: both;}/*增加一个div,设置clear:both;*/ </style> </head> <!-- 一个盒子里使用了CSS float浮动属性,导致父级对象盒子不能被撑开,这样CSS float浮动就产生了 浮动的负作用:1、父元素背景不能显示 2、父元素边框不能撑开 3、父元素的margin padding设置值不能正确显示 清除浮动的三种方法:1、对父级设置适合CSS高度,这种前提是父对象内容高度要能确定并能计算好。 2、增加一个div,设置clear:both 3、父级div定义 overflow:hidden 这三种方法,推荐后两种 --> <body> <div class="divcss5"> <div class="divcss5-left">left浮动</div> <div class="divcss5-right">right浮动</div> <div class="clear"></div> </div> </body> </html>
    查看全部
    1 采集 收起 来源:实践题

    2018-03-22

举报

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

微信扫码,参与3人拼团

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

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