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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
  • 网页布局:又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合,将理性的思维个性的化的表现出来,是一种具有个人艺术特色的视觉传达方式。传达信息的同时有美感。 网页设计特点(相对纸媒来说) 1、网页可以自适应宽度 2、网页的长度理论上可以无限延长 一般是头部,主体,底部。主体一般再根据需要分栏,一般两栏或者三栏,还有可能分为更多的栏目。常见分栏方式:一、二、三、列布局,混合布局。
    查看全部
    1 采集 收起 来源:内容简介

    2015-06-16

  • 要求中间为自适应宽度。 把宽度去掉,应为是自适应的。 Float是不可以的,会使得页面混乱。 建议使用绝对定位,position:absolute 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定义auto,定位:margin值:margin:0 310px 0 210px; 上右下左
    查看全部
    0 采集 收起 来源:三列布局

    2015-06-16

  • 三列布局,左右文本居中
    查看全部
    0 采集 收起 来源:编程练习

    2015-06-16

  • <!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,.right{text-align:center;} .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 ; 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;font-weight:bold} div{text-align:center;line-height:50px} .a,.c{background:#CCC;} .b,.d{background:#FCC;} .a{width:25%;height:600px;float:left;} .b{width:25%;height:600px;float:left;} .c{width:25%;height:600px;float:left;} .d{width:25%;height:600px;float:right;} </style> </head> <body> <div class="a">a</div> <div class="b">b</div> <div class="c">c</div> <div class="d">d</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;} span{font-size:15px;line-height:20px;} .left{width:200px;height:600px;background:#ccc;position:absolute;left:0;top:0;} .middle{height:600px;background:#FCC;margin:0 310px 0 210px;} .right{width:300px;height:600px;background:#ccc;position:absolute;right:0;top:0;} </style> </head> <body> <div class="left">left</div> <div class="middle"><span>说日本人节俭也常是言过其实。它四周是海,对“海幸”(海产)从来不珍惜,吃生鱼就是个浪费,远不如中国人料理得只剩下骨头。用稻米酿清酒,把米粒磨掉的越多越好。书读了就扔,尤其多如垃圾的漫画浪费着森林。我也从站台垃圾箱里捡过报刊,看过又丢掉,但比较鬼祟,终不能像流浪者大大方方。以废物利用的名义对垃圾管理得越来越严,书报、瓶瓶罐罐之类的“资源垃圾”不能随便捡,违犯受处罚,断了流浪者的财路。</span></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; 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;【任务1】}/*左浮动样式*/ .right{ width:660px; height:600px; background:#FCC; float:right;【任务2】}/*右浮动样式*/ </style> </head> <body> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • 哪两个 css 设置,可以让元素脱离文档流()A浮动(float)和 绝对定位(position:absolute)
    查看全部
    0 采集 收起 来源:评测题目

    2015-06-16

  • <!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} .main{width:800px;margin:0 auto;} .left{width:220px;height:500px;float:left;background:#ccc;} .right{width:580px;height:500px;float:right;background:#ddd} </style> </head> <body> <div class="main"> <div class="left"></div> <div class="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; 【任务1】} .head{ width:100%; height:100px; background:#ccc} .main{ height:600px; background:#FCC;margin:0 auto;} .footer{ height:50px; background:#9CF;margin:0 auto;} </style> </head> <body> <div class="head">head</div> <div class="main">main</div> <div class="footer">footer</div> </body> </html>
    查看全部
    0 采集 收起 来源:编程练习

    2018-03-22

  • just why not?
    查看全部
    0 采集 收起 来源:编程挑战

    2015-06-16

  • <!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>单列布局</title> <style type="text/css"> body{margin:0;padding:0} .top{height:100px;background-color:blue} .main{width:800px;height:300px;background-color:#ccc;margin:0 auto;} .foot{width:800px;height:100px;background-color:#900;margin:0 auto;} </style> </head> <body> <div class="top"></div> <div class="main"></div> <div class="foot"></div> </body> </html>
    查看全部
    0 采集 收起 来源:一列布局

    2018-03-22

  • 网页设计特定:宽度高度自适应,长度理论上可以无限延长,一般是头部,主体,底部。主体一般再根据需要分栏,一般两栏或者三栏,还有可能分为更多的栏目。
    查看全部
    0 采集 收起 来源:内容简介

    2015-06-15

  • 布局二字视为核心,相当于城市设计规划师, 不过网页的长度理论上可以无论长,还有自适应功能。
    查看全部
    0 采集 收起 来源:内容简介

    2015-06-15

  • 网页布局:又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合,将理性的思维个性的化的表现出来,是一种具有个人艺术特色的视觉传达方式。 网页设计特定:宽度高度自适应,长度理论上可以无限延长,一般是头部,主体,底部。主体一般再根据需要分栏,一般两栏或者三栏,还有可能分为更多的栏目。 排版布局:float:right/left;常用于两列布局(还是在正常的文档流中,并没有脱离文档流);position:absolute(相对于浏览器窗口视图进行绝对定位)/relative(相对于原来位置进行移动)/fixed(相对于视图的绝对定位,且不随滚动而发生改变 网页设计特点(相对纸媒来说) 1、网页可以自适应宽度 2、网页的长度理论上可以无限延长
    查看全部
    0 采集 收起 来源:内容简介

    2015-06-14

举报

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

微信扫码,参与3人拼团

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

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