-
布局好1查看全部
-
一般两排布局用固定宽度,很少用自适应宽度查看全部
-
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> body{margin: 0;padding: 0;} .top{width: 80%;height: 100px;margin: 0 auto;background: MistyRose;} .main{width: 80%;height: 400px;margin: 0 auto;background: red;position: relative;} .left{width: 200px;height: 400px;background: blue;position: absolute;left: 0;top: 0;} .right{height: 400px;background: PaleGreen;margin-left:210px;} .foot{width: 80%;height: 100px;margin: 0 auto;background: orange;} </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>查看全部
-
什么叫做布局查看全部
-
body{ margin:0; padding:0; font-size:30px; color:#fff} .top{height:100px;background:#9CF;} .main{height:600px;} .left{width:200px;height:600px;background:#ccc;position:absolute;} .right{width:100%;height:600px;background:#Fcc;position:absolute;margin-left:210px;} .foot{width:100%;height:100px;background:#9f9;clear:both;}查看全部
-
窗体自上而下分成一行行, 并在每行中按从左至右的顺序排放元素,即为文档流. 浮动(float)和 绝对定位(position:absolute)-->脱离文档流 脱离文档流,也就是将元素从普通的布局排版中拿走,其他盒子在定位的时候,会当做脱离文档流的元素不存在而进行定位。需要注意的是,使用float脱离文档流时,其他盒子会无视这个元素,但其他盒子内的文本依然会为这个元素让出位置,环绕在周围。而对于使用position:absolute脱离文档流的元素,其他盒子与其他盒子内的文本都会无视它。 有三种情况使得元素离开文档流而存在,分别是浮动 绝对布局 固定定位查看全部
-
自适应宽度布局用width用%,一般用固定大小布局。查看全部
-
div是一个容器,可以划分出一个区域 margin:0 padding:0 清除默认样式重新布局 margin:0 auto水平居中 margin:0代表垂直方向 auto代表左右方向 margin后面如果只有两个参数的话,第一个表示top和bottom,第二个表示left和right 因为0 auto,表示上下边界为0,左右则根据宽度自适应相同值(即居中)查看全部
-
三列布局,左边设置定位方式absolute,左边设置定位方式absolute,分别设置它们的top left right值,中间元素设置margin 值 自动设置查看全部
-
绝对定位absolute 和 float 可以脱离文档流查看全部
-
clear:both使用:因为5-1视频中的main设置了高度,所以不需要里面的内容把它撑起来,footer就不需要清除浮动。反之5-2中的main没有设置高度。所以要清除浮动查看全部
-
Div{width:800px; height:500px; margin:0 auto}查看全部
-
混合布局实践: 清除浮动的方法: 一: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块查看全部
-
...查看全部
-
margin:0 auto水平居中 margin:0代表垂直方向 auto代表左右方向 margin:0 padding:0 清除默认样式重新布局查看全部
举报
0/150
提交
取消