-
<!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{width:100%;height:100px;background:#ccc;} .main{height:500px;background:red;position:relative;} .left{ width:200px;height:500px;background:blue;top:0px;left:0;position:absolute;} .right{height:500px;background:pink;margin-left:210px;} .foot{height:100px;background:orange;} </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>查看全部
-
此处可以学到绝对定位布局方式查看全部
-
1、宽度自适应:不设置宽度; 2、样式加载:样式按从上往下排序,写在前面的先加载; 3、兼容ie6:不能用浮动float,只能先设置父元素main为相对定位relative作为参照定位,后设置其子元素(right、left)为绝对定位absolute,并设置其具体位置。 4、如不给right设置外边距margin,则其自适应宽度会与其中的文字同宽; 5、由于left的width为200px,则right的margin-left为210px,因此right与left的间隔为10px; 6、由于right为main的首个子元素,因此默认叠加在main上面,无需设置绝对定位。查看全部
-
margin赋值遵循上右下左。 根据width值查看全部
-
为什么效果图left和right之间还有间隙呢查看全部
-
margin:0 auto查看全部
-
float:left; margin:0 auto float:right; float:bottom查看全部
-
position:absolute;right:0;top:0 position:absolute;left:0;top:0查看全部
-
float:left向左浮动 float:right向右浮动查看全部
-
兼容ie6:不能用浮动float,只能先设置父元素main为相对定位relative作为参照定位,后设置其子元素(right、left)为绝对定位absolute,并设置其具体位置。 固定宽度的元素排成一行时用float,存在自适应宽度元素的若干元素排成一行时用position。查看全部
-
margin:0垂直方向 auto:左右方向查看全部
-
待使用pc实现查看全部
-
<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; 【任务1】; left:0; top:0} .main{ height:600px; 【任务2】 background:#9CF} .right{ height:600px; width:300px; position:absolute; top:0; 【任务3】; background:#FCC;} </style> </head> <body> <div class="left">left</div> <div class="main">设计首页的第一步是设计版面布局。就象传统的报刊杂志编辑一样,我们将网页看作一张报纸,一本杂志来进行排版布局。 虽然动态网页技术的发展使得我们开始趋向于学习场景编剧,但是固定的网页版面设计基础依然是必须学习和掌握的。它们的基本原理是共通的,你可以领会要点,举一反三。</div> <div class="right">right</div>查看全部
-
绝对定位:position:absolute查看全部
-
布局分为一列布局,二列布局,三列布局,常用的是混合布局查看全部
举报
0/150
提交
取消