-
<!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{height:50px;background:#ccc;} .main{height:960px;background:red;} .left{width:300px;height:960px;background:blue;position:absolute;left:0;top:50px;} .right{height:960px;background:#AAE27E;margin-left:310px;} .foot{height:30px;background:#E2452F;} </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 0 auto 单列布局水平居中查看全部
-
单列布局:margin:o auto; 两列布局 左float:left; 右float:right; 三列布局 左加入属性width:300px;position:absolute;left:0; 中间加入属性margin:0 300px 0 200px; 右侧加入属性width:200px;position:absolute;right:0;查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位查看全部
-
margin:0 auto 水平居中查看全部
-
把left right的width设小一点 就可以左右留白了查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流 相对定位(position:relative),不可以脱离文本流 浮动(float)和绝对定位(position:absolute)可以脱离文档流查看全部
-
3列布局查看全部
-
三列布局采用绝对定位查看全部
-
浮动float和绝对定位能够脱离文档流查看全部
-
CSS中脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。 需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。 所以 用 clear :both:清除浮动 是footer这个盒子 不会紧跟在 top盒子之后,而是跟在main之后。查看全部
-
clear:both 是用来清除紧邻后面元素的浮动,如前一个div左浮动了,后面的div就会与其同行,假如你不想两个div同行显示,想让后面的div单独一行,你就可以用clear:both,可看做是兄弟元素之间浮动的清除。 width:100%;overflow:hidden可实现浮动清除,它一般用于清除父元素和子元素之间的浮动影响。查看全部
-
.top{height:100px;background:#ccc;} .main{background:red;position:relative;height:500px;overflow:hidden;} .left{height:500px;width:200px;float:left;background:blue;} .right{height:500px;width:99%; position:absolute;margin:0 0 0 210px;background:#AAE27E;} .foot{height:50px; background:#E2452F;}查看全部
-
相对定位(position:relative),不可以脱离文本流查看全部
-
.left{ width:200px; height:600px; background:#ccc; margin-right:10px;position:absolute; left:0; top:0} .main{ height:600px; margin:0 310px 0 210px; background:#9CF} .right{ height:600px; width:300px; margin-left:10px;position:absolute; top:0; right:0; background:#FCC;}查看全部
举报
0/150
提交
取消