-
margin查看全部
-
常见布局查看全部
-
布局排版---报纸 书籍 杂志.. 网页自适应宽度,理论上可以无限延长!查看全部
-
<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>查看全部
-
<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:400px; height:600px; margin:0 auto}/*整体居中*/ .left{ width:100px; height:600px; background:#ccc; float:left;}。/*左浮动样式*/ .right{ width:300px; height:600px; background:#FCC; float:right;}/*右浮动样式*/ </style> </head> <body> <div class="main"> <div class="left">left</div> <div class="right">right</div> </div> </body> </html>查看全部
-
浮动(float)和 绝对定位(position:absolute)可以让元素脱离文档流。查看全部
-
Div{width:800px; height:500px; margin:0 auto},上面这段样式,可以让 div 在页面的居中对齐查看全部
-
一列布局: margin:0 auto:margin后面如果只有两个参数的话,第一个表示top和bottom,第二个表示left和right,因为0 auto(自动),表示上下边界为0,左右则根据宽度自适应相同值(即居中)查看全部
-
布局分类:一列布局、二列布局、三列布局、混合布局查看全部
-
clear:both 清除浮动查看全部
-
三列布局:位置固定 {position:absolute;top:0;left:0;}查看全部
-
布局不要设置高度!!查看全部
-
css 布局,一列布局查看全部
-
body{margin:0;padding:0;} 主要是为了清除样式 float:left 代表浮动查看全部
-
1、顶部和底部宽度自适应一般将其设置宽度为百分比,例如width:100% 2、多列中,其中一列需要宽度自适应,不需要加宽度(width)。只需要设置margin值 3、块的加载顺序由HTML代码编写顺序决定查看全部
举报
0/150
提交
取消