-
margin: 后面出现两个参数,则是用于定义上下,左右 有四参数时,则是上右下左查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流,分别是浮动 绝对布局 固定定位查看全部
-
清除浮动 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; color: #000;} .top{height:100px;top:0; background-color:#999} .main{ background-color:#F00; height:600px; width:100%;} .left{ height:600px; width:19%; float:left; background-color:blue;} .right{height:600px;width:80%; float:right; background-color:#0F0} .foot{height:100px; clear:both; background-color:#F63} </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>查看全部
-
上面的代码没有给main设置高度,而main里的内容又设置成了浮动,所以footer会跑到head的下面。 解决方法有两个:1.清除浮动, clear:both; 2.为main设置高度, .main{ width:860px;height:600px;margin:0 auto;background:#9FC; }查看全部
-
必须设置左右浮动 不设置右浮动则从左边开始算查看全部
-
不知道这样写对不对查看全部
-
000查看全部
-
000查看全部
-
000查看全部
-
000查看全部
-
000查看全部
-
一列布局通常用于首页; 让div居中:margin:0 auto; 2. 典型单列布局:头部top 主体main 尾部foot 三个<div> 3. 清除默认样式:;body{margin:0;padding:0} 4. margin的顺序是上右下左,那么这里的0表示上方的为0,上方的对应部位也就是下方也为0.同理auto指的是右方,那么对应的左方也为auto。查看全部
-
清除默认样式:body{margin:0;padding:0;} 一列布局:要固定宽度 水平居中:margin{0 auto}查看全部
-
单列布局:确定div的width,再使用margin:0 auto;就可以实现居中排列的效果; 双列布局:确定两列的宽度,使用float:left就可以实现; 三列布局(两边width确定,中间宽度自适应):左边position:absolute;top:0;left:0;;右边position:absolute;top:0;right:0;中间:margin:0 >右边宽度 0 >左边宽度,就可以了(根本不需要float!)。 多列布局:外部容器margin:0 auto;居中;里面使用float浮动;footer要清除浮动,否则就被main部分覆盖了。查看全部
举报
0/150
提交
取消