-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x html1/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} div{ text-align:center; font-weight:bold} .main,.footer{ width:960px; 【任务1】} .head{ width:100%; height:100px; background:#ccc} .main{ width:600px; height:600px; background:#FCC;margin:0 auto} .footer{ width:600px;height:50px; background:#9CF;margin:0 auto} </style> </head> <body> <div class="head">head</div> <div class="main">main</div> <div class="footer">footer</div> </body> </html>查看全部
-
右侧哪两个 css 设置,可以让元素脱离文档流() 浮动(float)和绝对定位(position:absolute)查看全部
-
右侧先加载?,兼容?查看全部
-
footer查看全部
-
a....查看全部
-
margin-left:210px;查看全部
-
<!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{background:#f00;height:500px;} .left{ width:200px;height:500px;position:absolute;left:0;top:100px;background:blue;} .right{background:#9C9;height:500px;margin-left:210px;} .foot{width:100%;height:50px;background:#F63;clear:both;} </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-left:xx 到左边的距离 注意 top: left: position:absolute!!查看全部
-
混合布局实践: 清除浮动的方法: 一:clear:both(/left/right); 二:overflow:hidden;width:100%; 三:给main设置高度:.main{width:960px; {height:600px};margin:0 auto;} 四:margin:600px 0 0 0; 因为main包含的块全都设置了浮动,而浮动和绝对定位会使块脱离标准文档流,但是head仍在文档流中 所以foot会忽略main的所有块而贴着head块查看全部
-
混全布局:块与块的布局 三种状态:块挨着块,块嵌套着块,块叠压着块。查看全部
-
读的时候是先右后左查看全部
-
左右列固定宽度,中间列自适应。 左侧绝对定位:position:absolute;left:0;top:0; 右侧绝对定位:position:absolute;right:0;top:0; 中间宽度定义去掉,加上左右的margin值,margin:0 310px 0 210px; 上右下左(中间空一点出的话,增加margin属性值便可以实现) 中间用margin:0 到右边一列的宽 0 到左边一列的宽。那么中间就是自适应的查看全部
-
float:left ->左浮动(定义元素在哪个方向浮动) float:right ->右浮动 浮动的是整个块查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。查看全部
举报
0/150
提交
取消