-
清楚浮动有两种方法: clear:both; //清除两边元素的浮动对他的影响 overflow: hidden; // 用在浮动元素本身清除对父元素的影响查看全部
-
文档流:将窗口自上而下分成一行一行,并在每行中按从左至右的依次排放元素,即为文档流。 有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位查看全部
-
2列自适应,用百分比来确定高和宽~~查看全部
-
网页设计特点查看全部
-
浮动float left right width 20% 80%查看全部
-
清除浮动有两种方法:1.clear:both 2.overflow:hidden查看全部
-
清除浮动有两种方法:1.clear:both 2.overflow:hidden查看全部
-
清除浮动有两种方法:1.clear:both 2.overflow:hidden(常见为隐藏溢出的功能)查看全部
-
<title>混合布局</title> <style><br> body{ margin:0; padding:0; font-size:30px; font-weight:bold}<br> div{ text-align:center; line-height:50px}<br> .top{ height:100px;background:#9CF}<br> .head,.main{ width:960px; margin:0 auto;}<br> .head{ height:100px; background:#F90}<br> .left{ width:220px; height:600px; background:#ccc; float:left;}<br> .right{ width:740px; height:600px;background:#FCC; float:right}<br> .r_sub_left{ width:540px; height:600px; background:#9C3; float:left}<br> .r_sub_right{ width:200px; height:600px; background:#9FC; float:right;}<br> .footer{ height:50px; background:#9F9; clear:both }<br> </style> </head> <body><br> <div class="top"><br> <div class="head">head</div><br> </div><br> <div class="main"><br> <div class="left">left</div><br> <div class="right"><br> <div class="r_sub_left">sub_left<br> </div><br> <div class=" r_sub_right">sub_right<br> </div><br> </div><br> </div><br> <div class="footer">footer</div><br> </body>查看全部
-
常见布局查看全部
-
<!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} div{ text-align:center; font-weight:bold} .main,.footer{ width:960px; margin:0 auto;} .head{ width:100%; 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>查看全部
-
margin:0 auto;定宽块状元素水平居中对齐,margin左右为auto查看全部
-
三列布局:中间可以不给宽度样式,来个左右边距,宽度便会根据父级的宽度变化而变化。(w = 父亲w - 左右外边距);查看全部
-
<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>查看全部
-
著作权归作者所有。 商业转载请联系作者获得授权,非商业转载请注明出处。 作者:张秋怡 链接:https://www.zhihu.com/question/24529373/answer/29135021 来源:知乎 脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。而对于使用absolute positioning脱离文档流的元素,其他盒子与其他盒子内的文本都会无视它。查看全部
举报
0/150
提交
取消