-
兼容IE6不能用浮动,而且当子元素要设定为absolute的时候,父元素要设定relative才可以。 要右侧自适应,则左侧应该定宽并且position:absolute。 加载顺序先右后左div的顺序为先右后左查看全部
-
宽度自适应:以百分比形式表现查看全部
-
yes!查看全部
-
http://www.zhihu.com/question/24529373/answer/29135021知乎上的答案查看全部
-
浮动float 和 绝对定位position(absolute)能使元素脱离文档流查看全部
-
清除浮动有两种方法:1.clear:both 2.overflow:hidden查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位 不脱离文档流就只有三种情况:块级、行内和相对定位查看全部
-
<!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> body{ margin:0; padding:0; font-size:30px} div{ text-align:center; font-weight:bold} .head, .main, .footer{ width:960px; margin:0 auto} .head{ height:100px; background:#ccc} .main{ height:600px; background:#FCC} .footer{ height:50px; background:#9CF} </style> </head> <body> <div class="head">head</div> <div class="main">main</div> <div class="footer">footer</div> </body> </html>查看全部
-
清除浮动有两种方法:1.clear:both 2.overflow:hidden查看全部
-
文档流:将窗体自上而下分成一行一行,并在每行中按从左至右的挨次排放元素,即为文档流。 有三种状况将使得元素离开文档流而存在,分别是浮动、绝对定位、固定定位。查看全部
-
一列布局简单明了,通常用于界面的首页,不适合大量文本读取。 1.body{margin:0;padding:0}用于清除默认样式,防止不同的浏览器产生差异 2.一列式布局内容页通常宽度确定,高度自适应 3.可以通过{margin:0 auto}将页面调整为居中查看全部
-
非常好!查看全部
-
<!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:#ff0;}/*设置顶部DIV高度50px背景颜色#ff0*/ .main{height:800px; margin:0 auto; background:#f00;}/*设置main主体高度为800px,margin和背景颜色*/ .left{width:200px; height:800px; float:left;background:#fc3}/*老妈说要碎觉了,就不注释了*/ .right{height:800px; position:absolute;left:200px;} .foot{height:50px; background:#500;} </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>查看全部
-
<!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:#ff0;}/*设置顶部DIV高度50px背景颜色#ff0*/ .main{height:800px; margin:0 auto; background:#f00;}/*设置main主体高度为800px,margin和背景颜色*/ .left{width:200px; height:800px; float:left;background:#fc3}/*老妈说要碎觉了,就不注释了*/ .right{height:800px; position:absolute;left:200px;} .foot{height:50px; background:#500;} </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>查看全部
-
good查看全部
举报
0/150
提交
取消