-
<style type="text/css"> body{ margin:0; padding:0; font-size:30px; color:#fff} .top{width:100%;height:50px;background:grey;} .main{width:100%; height:300px;background:red;} .left{ width:200px;height:300px;background:blue;position:absolute;} .right{margin-left:210px;width:100%;height:300px;background:#9C9;position:absolute} .foot{width:100%;height:50px;background:#F63;} </style>查看全部
-
编程挑战查看全部
-
margin:0 auto 实现定宽元素居中 (0是上下,auto是左右)查看全部
-
浮动(float)和绝对定为(position:absolute) 可以让元素脱离文档流查看全部
-
<!DOCTYPE> <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:white;} .main{width:800px;margin:0 auto;} .left{width:220px;height:200px;float:left;background:#ccc} .right{width:580px;height:200px;float:right;background:#ddd} </style> </head> <body> <div class="top"></div> <div class="main"> <div class="left"></div> <div class="right"></div> </div> </body> </html>查看全部
-
boday{margin:0;padding:0}==清除样式 <div class=查看全部
-
打代码前要先构思查看全部
-
一列布局多是固定宽度查看全部
-
一般而言,固定宽度的两列布局用的更为广泛查看全部
-
position:absolute;left:0;top:0;查看全部
-
width是指内容物的宽度。。。查看全部
-
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上面,无需设置绝对定位。查看全部
-
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{ line-height:50px} .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/150
提交
取消