-
position: absolute 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 relative 生成相对定位的元素,相对于其正常位置进行定位。 因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。 static 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 inherit 规定应该从父元素继承 position 属性的值。
查看全部 -
一列布局:margin:0 auto 两列布局:左右浮动<br> 三列布局:左右绝对定位,中间靠margin调整位置 混合布局:在一列布局的基础上,保留top和foot部分,将中间的main部分改造成两列或三列布局
查看全部 -
网页布局:又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合,将理性的思维个性化的表现出来,是一种具有个人艺术特色的视觉传达方式。传达信息的同时有美感。
网页设计特点(相对纸媒来说)
1、网页可以自适应宽度(百分比自适应宽度)
2、网页的长度理论上可以无限延长(高度自适应)
一般是头部,主体,底部。主体一般再根据需要分栏,一般两栏或者三栏,还有可能分为更多的栏目。常见分栏方式:一、二、三、列布局,混合布局。查看全部 -
浮动(float)和绝对定位(position:absolute)这两个设置,可以让元素脱离文档流。
查看全部 -
.top{width:90%;height:300px;background:#ccc;}
.main{background:#f00;height:500px;}
.left{width:200px;height:500px;position:absolute;left:0;top:100px;background:green;}
.right{background:#9c9;height:500px;margin-left:200px;}
.foot{width:90%;height:50px;background:#f63;clear:both;}
查看全部 -
clear:both是用来清除紧邻后面元素的浮动,
查看全部 -
<!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:1000px; height:600px; margin:0 auto} .left{ width:300px; height:600px; background:#ccc;float:left;text-align:left; 【任务1】}/*左浮动样式*/ .right{ width:660px; height:600px; background:#FCC;float:right;text-align:left; 【任务2】}/*右浮动样式*/ </style> </head> <body> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> </body> </html>
查看全部 -
混合布局:在一列布局的基础上,保留top和foot部分,将中间的main部分改造成两列或三列布局
查看全部 -
position: absolute 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 relative 生成相对定位的元素,相对于其正常位置进行定位。 因此,"left:20" 会向元素的 LEFT 位置添加 20 像素。 static 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 inherit 规定应该从父元素继承 position 属性的值。
查看全部 -
我是这样认为的(欢迎指正):
两列布局:自适应的两列布局:width用百分比+float; 固定宽度的两列布局:width:具体值/父级元素的宽度确定,width+百分比;+float; 如果没有加float的话,不能实现并排的两列布局。 我认为(欢迎指正):
查看全部 -
居中显示;magin:0 auto
查看全部 -
布局又称版式布局,是网页UI设计师将有限的视觉元素进行有机的排列组合
查看全部 -
<!DOCTYPE html>
<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}
div{text-align:center;}
.top{height:100px;background:#ccc;line-height:100px;}
.main{height:500px;background:red;line-height:500px;}
.left{width:200px;height:500px;background:blue;position:absolute;left:0;top:100px;}
.right{margin-left:210px;height:500px;background:#9c9;}
.foot{height:50px;background:orange;line-height:50px;}
</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>
查看全部 -
margin:0; padding:0; font-size:30px; color:#fff}
.top{width:100%; height:50px;background:gray}
.main{width:100%; height:300px;background:red}
.left{ width:200px;height:300px;background:blue;position:absolute}
.right{height:300px; background:green; position:absolute;left:210px;right:0px}
.foot{width:100%; height:100px; background:orange}正解
查看全部
举报