-
head{ width:100%; height:100px; background:#ccc}
.main{ height:600px; background:#FCC;margin:0 auto;}
.footer{ height:50px; background:#9CF;margin:0 auto;}查看全部 -
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。
有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位查看全部 -
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流而存在,分别是: 1、浮动 2、绝对布局 3、固定定位查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位查看全部
-
混合布局实验 <!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:100px;width:800px;background:#ccc;margin:0 auto;} .main{height:800px;width:800px;background:#900;margin:0 auto;} .left{height:800px;width:300px;background:blue;float:left;} .right{height:800px;width:480px;background:green;float:right;} .foot{height:100px;width:800px;background:orange;margin:0 auto;} </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>查看全部
-
<!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 300px 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>查看全部
-
嗯查看全部
-
网页设计特点(相对纸媒来说) 1、网页可以自适应宽度(百分比自适应宽度) 2、网页的长度理论上可以无限延长(高度自适应) 一般是头部,主体,底部。主体一般再根据需要分栏,一般两栏或者三栏,还有可能分为更多的栏目。常见分栏方式:一、二、三、列布局,混合布局。查看全部
-
网页布局:又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合,将理性的思维个性化的表现出来,是一种具有个人艺术特色的视觉传达方式。传达信息的同时有美感。查看全部
-
clear 清除 混合布局:其实就是块与块之间紧挨、嵌套、叠压查看全部
-
清除浮动 clear:both查看全部
-
在网页页面中居中显示一个样式或窗口时,用magin:0 auto 绝对定位,停靠在浏览器的左侧的 position:absolute;left:0;top:0查看全部
-
1、网页设计的特点:可自适应宽度、长度理论上无限制。 2、布局:(又称版式布局)有一列布局、二列布局、三列布局,常见的是混合布局。 3、网页布局:头部+内容主体部(分栏)+底部。 4、margin:0 auto 居中 5、float:left 左浮动 ;float:right 右浮动 6、position:absolute 绝对定位查看全部
-
Div{width:800px; height:500px; margin:0 auto},上面这段样式,可以让 div 在页面的居中对齐查看全部
-
先加载的right div 后加载left div, left跟随在right后面,所以left显示出来就是在下方。 解决办法:先给main相对定位,然后给left绝对定位查看全部
举报
0/150
提交
取消